Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for FileHeader (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GenerateVersionCatalogAccessors.kt

    import org.gradle.kotlin.dsl.concurrent.IO
    import org.gradle.kotlin.dsl.concurrent.withAsynchronousIO
    import org.gradle.kotlin.dsl.concurrent.writeFile
    import org.gradle.kotlin.dsl.internal.sharedruntime.codegen.fileHeader
    import org.gradle.kotlin.dsl.internal.sharedruntime.codegen.kotlinDslPackagePath
    import org.gradle.kotlin.dsl.internal.sharedruntime.support.appendReproducibleNewLine
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    	}
    	defer f.Close()
    
    	wantFileHeader := FileHeader{
    		Class:     ELFCLASS32,
    		Data:      ELFDATA2LSB,
    		Version:   EV_CURRENT,
    		OSABI:     ELFOSABI_NONE,
    		ByteOrder: binary.LittleEndian,
    		Type:      ET_REL,
    		Machine:   EM_386,
    	}
    	if f.FileHeader != wantFileHeader {
    		t.Errorf("\nhave %#v\nwant %#v\n", f.FileHeader, wantFileHeader)
    	}
    
    	wantSectionNum := 65298
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	if textsect == nil {
    		return fmt.Errorf("missing __text section")
    	}
    
    	cmdOffset := unsafe.Sizeof(exem.FileHeader)
    	if is64bit := exem.Magic == macho.Magic64; is64bit {
    		// mach_header_64 has one extra uint32.
    		cmdOffset += unsafe.Sizeof(exem.Magic)
    	}
    	dwarfCmdOffset := uint32(cmdOffset) + exem.FileHeader.Cmdsz
    	availablePadding := textsect.Offset - dwarfCmdOffset
    	if availablePadding < realdwarf.Len {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"File", Type, 0},
    		{"File.FileHeader", Field, 0},
    		{"FileHeader", Type, 0},
    		{"FileHeader.CRC32", Field, 0},
    		{"FileHeader.Comment", Field, 0},
    		{"FileHeader.CompressedSize", Field, 0},
    		{"FileHeader.CompressedSize64", Field, 1},
    		{"FileHeader.CreatorVersion", Field, 0},
    		{"FileHeader.ExternalAttrs", Field, 0},
    		{"FileHeader.Extra", Field, 0},
    		{"FileHeader.Flags", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

    import org.gradle.kotlin.dsl.concurrent.withAsynchronousIO
    import org.gradle.kotlin.dsl.concurrent.withSynchronousIO
    import org.gradle.kotlin.dsl.concurrent.writeFile
    import org.gradle.kotlin.dsl.internal.sharedruntime.codegen.fileHeader
    import org.gradle.kotlin.dsl.internal.sharedruntime.codegen.fileHeaderFor
    import org.gradle.kotlin.dsl.internal.sharedruntime.codegen.kotlinDslPackagePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. src/internal/xcoff/file.go

    type ImportedSymbol struct {
    	Name    string
    	Library string
    }
    
    // FileHeader holds information about an XCOFF file header.
    type FileHeader struct {
    	TargetMachine uint16
    }
    
    // A File represents an open XCOFF file.
    type File struct {
    	FileHeader
    	Sections     []*Section
    	Symbols      []*Symbol
    	StringTable  []byte
    	LibraryPaths []string
    
    	closer io.Closer
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_update_uuid.go

    	defer outf.Close()
    
    	// Copy over the file.
    	if _, err := io.Copy(outf, exef); err != nil {
    		return err
    	}
    
    	// Locate the portion of the binary containing the load commands.
    	cmdOffset := unsafe.Sizeof(exem.FileHeader)
    	if is64bit := exem.Magic == macho.Magic64; is64bit {
    		// mach_header_64 has one extra uint32.
    		cmdOffset += unsafe.Sizeof(exem.Magic)
    	}
    	if _, err := outf.Seek(int64(cmdOffset), 0); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/debug/pe/symbol.go

    //
    // At the moment this package only provides APIs for looking at
    // aux symbols of format 5 (associated with section definition symbols).
    func readCOFFSymbols(fh *FileHeader, r io.ReadSeeker) ([]COFFSymbol, error) {
    	if fh.PointerToSymbolTable == 0 {
    		return nil, nil
    	}
    	if fh.NumberOfSymbols <= 0 {
    		return nil, nil
    	}
    	_, err := r.Seek(int64(fh.PointerToSymbolTable), io.SeekStart)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    // address to get symbol table address. For an executable, the base
    // is 0. Otherwise, it's a shared library, and the base is the
    // address where the mapping starts. The kernel needs special handling.
    func GetBase(fh *elf.FileHeader, loadSegment *elf.ProgHeader, stextOffset *uint64, start, limit, offset uint64) (uint64, error) {
    
    	if start == 0 && offset == 0 && (limit == ^uint64(0) || limit == 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/debug/macho/file.go

    import (
    	"bytes"
    	"compress/zlib"
    	"debug/dwarf"
    	"encoding/binary"
    	"fmt"
    	"internal/saferio"
    	"io"
    	"os"
    	"strings"
    )
    
    // A File represents an open Mach-O file.
    type File struct {
    	FileHeader
    	ByteOrder binary.ByteOrder
    	Loads     []Load
    	Sections  []*Section
    
    	Symtab   *Symtab
    	Dysymtab *Dysymtab
    
    	closer io.Closer
    }
    
    // A Load represents any Mach-O load command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top