Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ProgFlag (0.17 sec)

  1. src/debug/elf/elf_test.go

    	{R_ALPHA_OP_PUSH, "R_ALPHA_OP_PUSH"},
    	{R_ARM_THM_ABS5, "R_ARM_THM_ABS5"},
    	{R_386_GOT32, "R_386_GOT32"},
    	{R_PPC_GOT16_HI, "R_PPC_GOT16_HI"},
    	{R_SPARC_GOT22, "R_SPARC_GOT22"},
    	{ET_LOOS + 5, "ET_LOOS+5"},
    	{ProgFlag(0x50), "0x50"},
    	{COMPRESS_ZLIB + 2, "COMPRESS_ZSTD+1"},
    }
    
    func TestNames(t *testing.T) {
    	for i, tt := range nameTests {
    		s := fmt.Sprint(tt.val)
    		if s != tt.str {
    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

    // Prog.Flag
    type ProgFlag uint32
    
    const (
    	PF_X        ProgFlag = 0x1        /* Executable. */
    	PF_W        ProgFlag = 0x2        /* Writable. */
    	PF_R        ProgFlag = 0x4        /* Readable. */
    	PF_MASKOS   ProgFlag = 0x0ff00000 /* Operating system-specific. */
    	PF_MASKPROC ProgFlag = 0xf0000000 /* Processor-specific. */
    )
    
    var pfStrings = []intName{
    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/debug/elf/file.go

    			return zrd(fr)
    		},
    		size: int64(s.Size),
    	}
    }
    
    // A ProgHeader represents a single ELF program header.
    type ProgHeader struct {
    	Type   ProgType
    	Flags  ProgFlag
    	Off    uint64
    	Vaddr  uint64
    	Paddr  uint64
    	Filesz uint64
    	Memsz  uint64
    	Align  uint64
    }
    
    // A Prog represents a single ELF program header in an ELF binary.
    type Prog struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(NType).GoString", Method, 0},
    		{"(NType).String", Method, 0},
    		{"(OSABI).GoString", Method, 0},
    		{"(OSABI).String", Method, 0},
    		{"(Prog).ReadAt", Method, 0},
    		{"(ProgFlag).GoString", Method, 0},
    		{"(ProgFlag).String", Method, 0},
    		{"(ProgType).GoString", Method, 0},
    		{"(ProgType).String", Method, 0},
    		{"(R_386).GoString", Method, 0},
    		{"(R_386).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)
  5. api/go1.txt

    pkg debug/elf, const NT_PRPSINFO NType
    pkg debug/elf, const NT_PRSTATUS NType
    pkg debug/elf, const PF_MASKOS ProgFlag
    pkg debug/elf, const PF_MASKPROC ProgFlag
    pkg debug/elf, const PF_R ProgFlag
    pkg debug/elf, const PF_W ProgFlag
    pkg debug/elf, const PF_X ProgFlag
    pkg debug/elf, const PT_DYNAMIC ProgType
    pkg debug/elf, const PT_HIOS ProgType
    pkg debug/elf, const PT_HIPROC ProgType
    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