Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ABIVersion (0.23 sec)

  1. src/debug/elf/file.go

    /*
     * Internal ELF representation
     */
    
    // A FileHeader represents an ELF file header.
    type FileHeader struct {
    	Class      Class
    	Data       Data
    	Version    Version
    	OSABI      OSABI
    	ABIVersion uint8
    	ByteOrder  binary.ByteOrder
    	Type       Type
    	Machine    Machine
    	Entry      uint64
    }
    
    // A File represents an open ELF file.
    type File struct {
    	FileHeader
    	Sections  []*Section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    			{"puts", 16, 0, 0, 0, 0, "", ""},
    		},
    	},
    	{
    		"testdata/go-relocation-test-gcc620-sparc64.obj",
    		FileHeader{Class: ELFCLASS64, Data: ELFDATA2MSB, Version: EV_CURRENT, OSABI: ELFOSABI_NONE, ABIVersion: 0x0, ByteOrder: binary.BigEndian, Type: ET_REL, Machine: EM_SPARCV9, Entry: 0x0},
    		[]SectionHeader{
    			{"", SHT_NULL, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
    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/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ErrNoSymbols", Var, 4},
    		{"File", Type, 0},
    		{"File.FileHeader", Field, 0},
    		{"File.Progs", Field, 0},
    		{"File.Sections", Field, 0},
    		{"FileHeader", Type, 0},
    		{"FileHeader.ABIVersion", Field, 0},
    		{"FileHeader.ByteOrder", Field, 0},
    		{"FileHeader.Class", Field, 0},
    		{"FileHeader.Data", Field, 0},
    		{"FileHeader.Entry", Field, 1},
    		{"FileHeader.Machine", 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)
  4. api/go1.txt

    pkg debug/elf, type File struct, Sections []*Section
    pkg debug/elf, type File struct, embedded FileHeader
    pkg debug/elf, type FileHeader struct
    pkg debug/elf, type FileHeader struct, ABIVersion uint8
    pkg debug/elf, type FileHeader struct, ByteOrder binary.ByteOrder
    pkg debug/elf, type FileHeader struct, Class Class
    pkg debug/elf, type FileHeader struct, Data Data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top