Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SHT_GNU_ATTRIBUTES (0.23 sec)

  1. src/debug/elf/elf.go

    	SHT_SYMTAB_SHNDX   SectionType = 18         /* Section indexes (see SHN_XINDEX). */
    	SHT_LOOS           SectionType = 0x60000000 /* First of OS specific semantics */
    	SHT_GNU_ATTRIBUTES SectionType = 0x6ffffff5 /* GNU object attributes */
    	SHT_GNU_HASH       SectionType = 0x6ffffff6 /* GNU hash table */
    	SHT_GNU_LIBLIST    SectionType = 0x6ffffff7 /* GNU prelink library list */
    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/elf.go

    		ph := newElfPhdr()
    		ph.Type = elf.PT_MIPS_ABIFLAGS
    		ph.Flags = elf.PF_R
    		phsh(ph, sh)
    
    		sh = elfshname(".gnu.attributes")
    		sh.Type = uint32(elf.SHT_GNU_ATTRIBUTES)
    		sh.Addralign = 1
    		ldr := ctxt.loader
    		shsym(sh, ldr, ldr.Lookup(".gnu.attributes", 0))
    	}
    
    	// put these sections early in the list
    	if !*FlagS {
    		elfshname(".symtab")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SHN_LORESERVE", Const, 0},
    		{"SHN_UNDEF", Const, 0},
    		{"SHN_XINDEX", Const, 0},
    		{"SHT_DYNAMIC", Const, 0},
    		{"SHT_DYNSYM", Const, 0},
    		{"SHT_FINI_ARRAY", Const, 0},
    		{"SHT_GNU_ATTRIBUTES", Const, 0},
    		{"SHT_GNU_HASH", Const, 0},
    		{"SHT_GNU_LIBLIST", Const, 0},
    		{"SHT_GNU_VERDEF", Const, 0},
    		{"SHT_GNU_VERNEED", Const, 0},
    		{"SHT_GNU_VERSYM", Const, 0},
    		{"SHT_GROUP", Const, 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, const SHN_XINDEX SectionIndex
    pkg debug/elf, const SHT_DYNAMIC SectionType
    pkg debug/elf, const SHT_DYNSYM SectionType
    pkg debug/elf, const SHT_FINI_ARRAY SectionType
    pkg debug/elf, const SHT_GNU_ATTRIBUTES SectionType
    pkg debug/elf, const SHT_GNU_HASH SectionType
    pkg debug/elf, const SHT_GNU_LIBLIST SectionType
    pkg debug/elf, const SHT_GNU_VERDEF SectionType
    pkg debug/elf, const SHT_GNU_VERNEED SectionType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg debug/elf, const SHN_UNDEF = 0
    pkg debug/elf, const SHN_XINDEX = 65535
    pkg debug/elf, const SHT_DYNAMIC = 6
    pkg debug/elf, const SHT_DYNSYM = 11
    pkg debug/elf, const SHT_FINI_ARRAY = 15
    pkg debug/elf, const SHT_GNU_ATTRIBUTES = 1879048181
    pkg debug/elf, const SHT_GNU_HASH = 1879048182
    pkg debug/elf, const SHT_GNU_LIBLIST = 1879048183
    pkg debug/elf, const SHT_GNU_VERDEF = 1879048189
    pkg debug/elf, const SHT_GNU_VERNEED = 1879048190
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top