Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DT_NULL (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top