Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PT_PHDR (0.35 sec)

  1. src/debug/elf/file_test.go

    			{".symtab", SHT_SYMTAB, 0x0, 0x0, 0xfb8, 0x4b0, 0x1d, 0x38, 0x4, 0x10, 0x4b0},
    			{".strtab", SHT_STRTAB, 0x0, 0x0, 0x1468, 0x206, 0x0, 0x0, 0x1, 0x0, 0x206},
    		},
    		[]ProgHeader{
    			{PT_PHDR, PF_R + PF_X, 0x34, 0x8048034, 0x8048034, 0xa0, 0xa0, 0x4},
    			{PT_INTERP, PF_R, 0xd4, 0x80480d4, 0x80480d4, 0x15, 0x15, 0x1},
    			{PT_LOAD, PF_R + PF_X, 0x0, 0x8048000, 0x8048000, 0x5fb, 0x5fb, 0x1000},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	PT_INTERP  ProgType = 3 /* Pathname of interpreter. */
    	PT_NOTE    ProgType = 4 /* Auxiliary information. */
    	PT_SHLIB   ProgType = 5 /* Reserved (not used). */
    	PT_PHDR    ProgType = 6 /* Location of program header itself. */
    	PT_TLS     ProgType = 7 /* Thread local storage segment */
    
    	PT_LOOS ProgType = 0x60000000 /* First OS-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/link/internal/ld/elf.go

    			sh.Type = uint32(elf.SHT_NOTE)
    			sh.Flags = uint64(elf.SHF_ALLOC)
    		}
    
    		goto elfobj
    	}
    
    	/* program header info */
    	pph = newElfPhdr()
    
    	pph.Type = elf.PT_PHDR
    	pph.Flags = elf.PF_R
    	pph.Off = uint64(eh.Ehsize)
    	pph.Vaddr = uint64(*FlagTextAddr) - uint64(HEADR) + pph.Off
    	pph.Paddr = uint64(*FlagTextAddr) - uint64(HEADR) + pph.Off
    	pph.Align = uint64(*FlagRound)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PT_NOTE", Const, 0},
    		{"PT_NULL", Const, 0},
    		{"PT_OPENBSD_BOOTDATA", Const, 16},
    		{"PT_OPENBSD_RANDOMIZE", Const, 16},
    		{"PT_OPENBSD_WXNEEDED", Const, 16},
    		{"PT_PAX_FLAGS", Const, 16},
    		{"PT_PHDR", Const, 0},
    		{"PT_S390_PGSTE", Const, 16},
    		{"PT_SHLIB", Const, 0},
    		{"PT_SUNWSTACK", Const, 16},
    		{"PT_SUNW_EH_FRAME", Const, 16},
    		{"PT_TLS", Const, 0},
    		{"Prog", Type, 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 PT_LOAD ProgType
    pkg debug/elf, const PT_LOOS ProgType
    pkg debug/elf, const PT_LOPROC ProgType
    pkg debug/elf, const PT_NOTE ProgType
    pkg debug/elf, const PT_NULL ProgType
    pkg debug/elf, const PT_PHDR ProgType
    pkg debug/elf, const PT_SHLIB ProgType
    pkg debug/elf, const PT_TLS ProgType
    pkg debug/elf, const R_386_32 R_386
    pkg debug/elf, const R_386_COPY R_386
    pkg debug/elf, const R_386_GLOB_DAT R_386
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg debug/elf, const PT_LOAD = 1
    pkg debug/elf, const PT_LOOS = 1610612736
    pkg debug/elf, const PT_LOPROC = 1879048192
    pkg debug/elf, const PT_NOTE = 4
    pkg debug/elf, const PT_NULL = 0
    pkg debug/elf, const PT_PHDR = 6
    pkg debug/elf, const PT_SHLIB = 5
    pkg debug/elf, const PT_TLS = 7
    pkg debug/elf, const R_386_32 = 1
    pkg debug/elf, const R_386_COPY = 5
    pkg debug/elf, const R_386_GLOB_DAT = 6
    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