Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 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/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)
  3. 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)
Back to top