Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DT_NULL (0.23 sec)

  1. src/cmd/link/internal/mips64/asm.go

    	}
    	ld.Elfwritedynent(ctxt.Arch, dynamic, elf.DT_MIPS_LOCAL_GOTNO, gotLocalCount)
    
    	// DT_* entries have to exist prior to elfdynhash(), which finalises the
    	// table by adding DT_NULL. However, the values for the following entries
    	// are not know until after dynreloc() has completed. Add the symbols now,
    	// then update their values prior to code generation.
    	dts := []elf.DynTag{
    		elf.DT_MIPS_SYMTABNO,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    		}
    		elfwritedynentsymsize(ctxt, s, elf.DT_PLTRELSZ, sy.Sym())
    		elfWriteDynEntSym(ctxt, s, elf.DT_JMPREL, sy.Sym())
    	}
    
    	Elfwritedynent(ctxt.Arch, s, elf.DT_NULL, 0)
    }
    
    func elfphload(seg *sym.Segment) *ElfPhdr {
    	ph := newElfPhdr()
    	ph.Type = elf.PT_LOAD
    	if seg.Rwx&4 != 0 {
    		ph.Flags |= elf.PF_R
    	}
    	if seg.Rwx&2 != 0 {
    		ph.Flags |= elf.PF_W
    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

    func (i ProgFlag) String() string   { return flagName(uint32(i), pfStrings, false) }
    func (i ProgFlag) GoString() string { return flagName(uint32(i), pfStrings, true) }
    
    // Dyn.Tag
    type DynTag int
    
    const (
    	DT_NULL         DynTag = 0  /* Terminating entry. */
    	DT_NEEDED       DynTag = 1  /* String table offset of a needed shared library. */
    	DT_PLTRELSZ     DynTag = 2  /* Total size in bytes of PLT relocations. */
    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

    		{"DT_MIPS_TIME_STAMP", Const, 16},
    		{"DT_MIPS_UNREFEXTNO", Const, 16},
    		{"DT_MOVEENT", Const, 16},
    		{"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},
    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 DT_INIT_ARRAYSZ DynTag
    pkg debug/elf, const DT_JMPREL DynTag
    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
    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 DT_INIT_ARRAYSZ = 27
    pkg debug/elf, const DT_JMPREL = 23
    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
    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