Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PT_DYNAMIC (0.4 sec)

  1. src/debug/elf/file_test.go

    			{PT_INTERP, PF_R, 0xd4, 0x80480d4, 0x80480d4, 0x15, 0x15, 0x1},
    			{PT_LOAD, PF_R + PF_X, 0x0, 0x8048000, 0x8048000, 0x5fb, 0x5fb, 0x1000},
    			{PT_LOAD, PF_R + PF_W, 0x5fc, 0x80495fc, 0x80495fc, 0xd8, 0xf8, 0x1000},
    			{PT_DYNAMIC, PF_R + PF_W, 0x60c, 0x804960c, 0x804960c, 0x98, 0x98, 0x4},
    		},
    		[]string{"libc.so.6"},
    		[]Symbol{
    			{"", 3, 0, 1, 134512852, 0, "", ""},
    			{"", 3, 0, 2, 134512876, 0, "", ""},
    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/cmd/link/internal/ld/elf.go

    		sh.Flags = uint64(elf.SHF_ALLOC)
    		sh.Entsize = 4
    		sh.Addralign = uint64(ctxt.Arch.RegSize)
    		sh.Link = uint32(elfshname(".dynsym").shnum)
    		shsym(sh, ldr, ldr.Lookup(".hash", 0))
    
    		/* sh and elf.PT_DYNAMIC for .dynamic section */
    		sh = elfshname(".dynamic")
    
    		sh.Type = uint32(elf.SHT_DYNAMIC)
    		sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_WRITE)
    		sh.Entsize = 2 * uint64(ctxt.Arch.RegSize)
    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/debug/elf/elf.go

    // Prog.Type
    type ProgType int
    
    const (
    	PT_NULL    ProgType = 0 /* Unused entry. */
    	PT_LOAD    ProgType = 1 /* Loadable segment. */
    	PT_DYNAMIC ProgType = 2 /* Dynamic linking information segment. */
    	PT_INTERP  ProgType = 3 /* Pathname of interpreter. */
    	PT_NOTE    ProgType = 4 /* Auxiliary information. */
    	PT_SHLIB   ProgType = 5 /* Reserved (not used). */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PF_W", Const, 0},
    		{"PF_X", Const, 0},
    		{"PT_AARCH64_ARCHEXT", Const, 16},
    		{"PT_AARCH64_UNWIND", Const, 16},
    		{"PT_ARM_ARCHEXT", Const, 16},
    		{"PT_ARM_EXIDX", Const, 16},
    		{"PT_DYNAMIC", Const, 0},
    		{"PT_GNU_EH_FRAME", Const, 16},
    		{"PT_GNU_MBIND_HI", Const, 16},
    		{"PT_GNU_MBIND_LO", Const, 16},
    		{"PT_GNU_PROPERTY", Const, 16},
    		{"PT_GNU_RELRO", Const, 16},
    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 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
    pkg debug/elf, const PT_INTERP ProgType
    pkg debug/elf, const PT_LOAD ProgType
    pkg debug/elf, const PT_LOOS 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)
  6. api/go1.1.txt

    pkg debug/elf, const PF_MASKOS = 267386880
    pkg debug/elf, const PF_MASKPROC = 4026531840
    pkg debug/elf, const PF_R = 4
    pkg debug/elf, const PF_W = 2
    pkg debug/elf, const PF_X = 1
    pkg debug/elf, const PT_DYNAMIC = 2
    pkg debug/elf, const PT_HIOS = 1879048191
    pkg debug/elf, const PT_HIPROC = 2147483647
    pkg debug/elf, const PT_INTERP = 3
    pkg debug/elf, const PT_LOAD = 1
    pkg debug/elf, const PT_LOOS = 1610612736
    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