Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SectionIndex (0.2 sec)

  1. src/debug/elf/elf.go

    // Special section indices.
    type SectionIndex int
    
    const (
    	SHN_UNDEF     SectionIndex = 0      /* Undefined, missing, irrelevant. */
    	SHN_LORESERVE SectionIndex = 0xff00 /* First of reserved range. */
    	SHN_LOPROC    SectionIndex = 0xff00 /* First processor-specific. */
    	SHN_HIPROC    SectionIndex = 0xff1f /* Last processor-specific. */
    	SHN_LOOS      SectionIndex = 0xff20 /* First operating system-specific. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/symtab.go

    	}
    
    	off := len(elfstrdat)
    	elfstrdat = append(elfstrdat, s...)
    	elfstrdat = append(elfstrdat, 0)
    	return off
    }
    
    func putelfsyment(out *OutBuf, off int, addr int64, size int64, info uint8, shndx elf.SectionIndex, other int) {
    	if elf64 {
    		out.Write32(uint32(off))
    		out.Write8(info)
    		out.Write8(uint8(other))
    		out.Write16(uint16(shndx))
    		out.Write64(uint64(addr))
    		out.Write64(uint64(size))
    		symSize += ELF64SYMSIZE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadelf/ldelf.go

    	shentsize uint32
    	shnum     uint32
    	shstrndx  uint32
    }
    
    type ElfSym struct {
    	name  string
    	value uint64
    	size  uint64
    	bind  elf.SymBind
    	type_ elf.SymType
    	other uint8
    	shndx elf.SectionIndex
    	sym   loader.Sym
    }
    
    const (
    	TagFile               = 1
    	TagCPUName            = 4
    	TagCPURawName         = 5
    	TagCompatibility      = 32
    	TagNoDefaults         = 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    // A Symbol represents an entry in an ELF symbol table section.
    type Symbol struct {
    	Name        string
    	Info, Other byte
    	Section     SectionIndex
    	Value, Size uint64
    
    	// Version and Library are present only for the dynamic symbol
    	// table.
    	Version string
    	Library string
    }
    
    /*
     * ELF reader
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    /* For accessing the fields of st_other. */
    
    /*
     * ELF header.
     */
    type ElfEhdr elf.Header64
    
    /*
     * Section header.
     */
    type ElfShdr struct {
    	elf.Section64
    	shnum elf.SectionIndex
    }
    
    /*
     * Program header.
     */
    type ElfPhdr elf.ProgHeader
    
    /* For accessing the fields of r_info. */
    
    /* For constructing r_info from field values. */
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(R_X86_64).String", Method, 0},
    		{"(Section).ReadAt", Method, 0},
    		{"(SectionFlag).GoString", Method, 0},
    		{"(SectionFlag).String", Method, 0},
    		{"(SectionIndex).GoString", Method, 0},
    		{"(SectionIndex).String", Method, 0},
    		{"(SectionType).GoString", Method, 0},
    		{"(SectionType).String", Method, 0},
    		{"(SymBind).GoString", Method, 0},
    		{"(SymBind).String", Method, 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)
  7. api/go1.txt

    pkg debug/elf, const SHN_ABS SectionIndex
    pkg debug/elf, const SHN_COMMON SectionIndex
    pkg debug/elf, const SHN_HIOS SectionIndex
    pkg debug/elf, const SHN_HIPROC SectionIndex
    pkg debug/elf, const SHN_HIRESERVE SectionIndex
    pkg debug/elf, const SHN_LOOS SectionIndex
    pkg debug/elf, const SHN_LOPROC SectionIndex
    pkg debug/elf, const SHN_LORESERVE SectionIndex
    pkg debug/elf, const SHN_UNDEF SectionIndex
    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