Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SHT_PREINIT_ARRAY (0.54 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		case ".strtab":
    			want = elf.SHT_STRTAB
    		case ".init_array":
    			want = elf.SHT_INIT_ARRAY
    		case ".fini_array":
    			want = elf.SHT_FINI_ARRAY
    		case ".preinit_array":
    			want = elf.SHT_PREINIT_ARRAY
    		}
    		if want != elf.SHT_NULL && sec.Type != want {
    			t.Errorf("%s: incorrect section type in elf file at %d for section %q: got %v want %v", arname, off, sec.Name, sec.Type, want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	SHT_INIT_ARRAY     SectionType = 14         /* Initialization function pointers. */
    	SHT_FINI_ARRAY     SectionType = 15         /* Termination function pointers. */
    	SHT_PREINIT_ARRAY  SectionType = 16         /* Pre-initialization function ptrs. */
    	SHT_GROUP          SectionType = 17         /* Section group. */
    	SHT_SYMTAB_SHNDX   SectionType = 18         /* Section indexes (see SHN_XINDEX). */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SHT_LOPROC", Const, 0},
    		{"SHT_LOUSER", Const, 0},
    		{"SHT_MIPS_ABIFLAGS", Const, 17},
    		{"SHT_NOBITS", Const, 0},
    		{"SHT_NOTE", Const, 0},
    		{"SHT_NULL", Const, 0},
    		{"SHT_PREINIT_ARRAY", Const, 0},
    		{"SHT_PROGBITS", Const, 0},
    		{"SHT_REL", Const, 0},
    		{"SHT_RELA", Const, 0},
    		{"SHT_SHLIB", Const, 0},
    		{"SHT_STRTAB", Const, 0},
    		{"SHT_SYMTAB", 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 SHT_LOUSER SectionType
    pkg debug/elf, const SHT_NOBITS SectionType
    pkg debug/elf, const SHT_NOTE SectionType
    pkg debug/elf, const SHT_NULL SectionType
    pkg debug/elf, const SHT_PREINIT_ARRAY SectionType
    pkg debug/elf, const SHT_PROGBITS SectionType
    pkg debug/elf, const SHT_REL SectionType
    pkg debug/elf, const SHT_RELA SectionType
    pkg debug/elf, const SHT_SHLIB 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 SHT_LOPROC = 1879048192
    pkg debug/elf, const SHT_LOUSER = 2147483648
    pkg debug/elf, const SHT_NOBITS = 8
    pkg debug/elf, const SHT_NOTE = 7
    pkg debug/elf, const SHT_NULL = 0
    pkg debug/elf, const SHT_PREINIT_ARRAY = 16
    pkg debug/elf, const SHT_PROGBITS = 1
    pkg debug/elf, const SHT_REL = 9
    pkg debug/elf, const SHT_RELA = 4
    pkg debug/elf, const SHT_SHLIB = 10
    pkg debug/elf, const SHT_STRTAB = 3
    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