Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SHN_LOPROC (0.28 sec)

  1. src/debug/elf/elf_test.go

    import (
    	"fmt"
    	"testing"
    )
    
    type nameTest struct {
    	val any
    	str string
    }
    
    var nameTests = []nameTest{
    	{ELFOSABI_LINUX, "ELFOSABI_LINUX"},
    	{ET_EXEC, "ET_EXEC"},
    	{EM_860, "EM_860"},
    	{SHN_LOPROC, "SHN_LOPROC"},
    	{SHT_PROGBITS, "SHT_PROGBITS"},
    	{SHF_MERGE + SHF_TLS, "SHF_MERGE+SHF_TLS"},
    	{PT_LOAD, "PT_LOAD"},
    	{PF_W + PF_R + 0x50, "PF_W+PF_R+0x50"},
    	{DT_SYMBOLIC, "DT_SYMBOLIC"},
    	{DF_BIND_NOW, "DF_BIND_NOW"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SHF_WRITE", Const, 0},
    		{"SHN_ABS", Const, 0},
    		{"SHN_COMMON", Const, 0},
    		{"SHN_HIOS", Const, 0},
    		{"SHN_HIPROC", Const, 0},
    		{"SHN_HIRESERVE", Const, 0},
    		{"SHN_LOOS", Const, 0},
    		{"SHN_LOPROC", Const, 0},
    		{"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},
    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_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
    pkg debug/elf, const SHN_XINDEX SectionIndex
    pkg debug/elf, const SHT_DYNAMIC 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_COMMON = 65522
    pkg debug/elf, const SHN_HIOS = 65343
    pkg debug/elf, const SHN_HIPROC = 65311
    pkg debug/elf, const SHN_HIRESERVE = 65535
    pkg debug/elf, const SHN_LOOS = 65312
    pkg debug/elf, const SHN_LOPROC = 65280
    pkg debug/elf, const SHN_LORESERVE = 65280
    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
    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