Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DT_PLTREL (0.32 sec)

  1. src/cmd/link/internal/ld/elf.go

    	}
    
    	sy := ldr.CreateSymForUpdate(elfRelType+".plt", 0)
    	if sy.Size() > 0 {
    		if elfRelType == ".rela" {
    			Elfwritedynent(ctxt.Arch, s, elf.DT_PLTREL, uint64(elf.DT_RELA))
    		} else {
    			Elfwritedynent(ctxt.Arch, s, elf.DT_PLTREL, uint64(elf.DT_REL))
    		}
    		elfwritedynentsymsize(ctxt, s, elf.DT_PLTRELSZ, sy.Sym())
    		elfWriteDynEntSym(ctxt, s, elf.DT_JMPREL, sy.Sym())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	DT_REL          DynTag = 17 /* Address of ElfNN_Rel relocations. */
    	DT_RELSZ        DynTag = 18 /* Total size of ElfNN_Rel relocations. */
    	DT_RELENT       DynTag = 19 /* Size of each ElfNN_Rel relocation. */
    	DT_PLTREL       DynTag = 20 /* Type of relocation used for PLT. */
    	DT_DEBUG        DynTag = 21 /* Reserved (not used). */
    	DT_TEXTREL      DynTag = 22 /* Indicates there may be relocations in non-writable segments. [sup] */
    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

    		{"DT_MOVESZ", Const, 16},
    		{"DT_MOVETAB", Const, 16},
    		{"DT_NEEDED", Const, 0},
    		{"DT_NULL", Const, 0},
    		{"DT_PLTGOT", Const, 0},
    		{"DT_PLTPAD", Const, 16},
    		{"DT_PLTPADSZ", Const, 16},
    		{"DT_PLTREL", Const, 0},
    		{"DT_PLTRELSZ", Const, 0},
    		{"DT_POSFLAG_1", Const, 16},
    		{"DT_PPC64_GLINK", Const, 16},
    		{"DT_PPC64_OPD", Const, 16},
    		{"DT_PPC64_OPDSZ", Const, 16},
    		{"DT_PPC64_OPT", 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)
  4. api/go1.txt

    pkg debug/elf, const DT_LOOS DynTag
    pkg debug/elf, const DT_LOPROC DynTag
    pkg debug/elf, const DT_NEEDED DynTag
    pkg debug/elf, const DT_NULL DynTag
    pkg debug/elf, const DT_PLTGOT DynTag
    pkg debug/elf, const DT_PLTREL DynTag
    pkg debug/elf, const DT_PLTRELSZ DynTag
    pkg debug/elf, const DT_PREINIT_ARRAY DynTag
    pkg debug/elf, const DT_PREINIT_ARRAYSZ DynTag
    pkg debug/elf, const DT_REL DynTag
    pkg debug/elf, const DT_RELA DynTag
    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 DT_LOOS = 1610612749
    pkg debug/elf, const DT_LOPROC = 1879048192
    pkg debug/elf, const DT_NEEDED = 1
    pkg debug/elf, const DT_NULL = 0
    pkg debug/elf, const DT_PLTGOT = 3
    pkg debug/elf, const DT_PLTREL = 20
    pkg debug/elf, const DT_PLTRELSZ = 2
    pkg debug/elf, const DT_PREINIT_ARRAY = 32
    pkg debug/elf, const DT_PREINIT_ARRAYSZ = 33
    pkg debug/elf, const DT_REL = 17
    pkg debug/elf, const DT_RELA = 7
    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