Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DF_1_PIE (0.11 sec)

  1. src/debug/elf/elf_test.go

    	{SHT_PROGBITS, "SHT_PROGBITS"},
    	{SHF_MERGE + SHF_TLS, "SHF_MERGE+SHF_TLS"},
    	{PT_LOAD, "PT_LOAD"},
    	{PF_W + PF_R + 0x50, "PF_W+PF_R+0x50"},
    	{DT_SYMBOLIC, "DT_SYMBOLIC"},
    	{DF_BIND_NOW, "DF_BIND_NOW"},
    	{DF_1_PIE, "DF_1_PIE"},
    	{NT_FPREGSET, "NT_FPREGSET"},
    	{STB_GLOBAL, "STB_GLOBAL"},
    	{STT_COMMON, "STT_COMMON"},
    	{STV_HIDDEN, "STV_HIDDEN"},
    	{R_X86_64_PC32, "R_X86_64_PC32"},
    	{R_ALPHA_OP_PUSH, "R_ALPHA_OP_PUSH"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    					"DT_FLAGS_1 DF_1_NOW	got: %v,	want: %v",
    					gotDfBindNow, test.wantDfBindNow, gotDf1Now, test.wantDf1Now)
    			}
    
    			if gotDf1Pie := gotDynFlag(flags1, uint64(elf.DF_1_PIE)); gotDf1Pie != test.wantDf1Pie {
    				t.Fatalf("DT_FLAGS_1 DF_1_PIE got: %v, want: %v", gotDf1Pie, test.wantDf1Pie)
    			}
    
    			wsrolists := [][]string{test.wantSecsRO, test.wantSecsROIfPresent}
    			for k, wsrolist := range wsrolists {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. api/go1.21.txt

    pkg debug/elf, const DF_1_NOW DynFlag1 #56887
    pkg debug/elf, const DF_1_ORIGIN = 128 #56887
    pkg debug/elf, const DF_1_ORIGIN DynFlag1 #56887
    pkg debug/elf, const DF_1_PIE = 134217728 #56887
    pkg debug/elf, const DF_1_PIE DynFlag1 #56887
    pkg debug/elf, const DF_1_SINGLETON = 33554432 #56887
    pkg debug/elf, const DF_1_SINGLETON DynFlag1 #56887
    pkg debug/elf, const DF_1_STUB = 67108864 #56887
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	DF_1_SINGLETON DynFlag1 = 0x02000000
    	// Indicates that the object is a stub.
    	DF_1_STUB DynFlag1 = 0x04000000
    	// Indicates that the object is a position-independent executable.
    	DF_1_PIE DynFlag1 = 0x08000000
    	// Indicates that the object is a kernel module.
    	DF_1_KMOD DynFlag1 = 0x10000000
    	// Indicates that the object is a weak standard filter.
    	DF_1_WEAKFILTER DynFlag1 = 0x20000000
    	// Unused.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    	var dtFlags1 elf.DynFlag1
    	if *flagBindNow {
    		dtFlags1 |= elf.DF_1_NOW
    		Elfwritedynent(ctxt.Arch, s, elf.DT_FLAGS, uint64(elf.DF_BIND_NOW))
    	}
    	if ctxt.BuildMode == BuildModePIE {
    		dtFlags1 |= elf.DF_1_PIE
    	}
    	Elfwritedynent(ctxt.Arch, s, elf.DT_FLAGS_1, uint64(dtFlags1))
    
    	elfverneed = nfile
    	if elfverneed != 0 {
    		elfWriteDynEntSym(ctxt, s, elf.DT_VERNEED, gnuVersionR.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)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DF_1_NOHDR", Const, 21},
    		{"DF_1_NOKSYMS", Const, 21},
    		{"DF_1_NOOPEN", Const, 21},
    		{"DF_1_NORELOC", Const, 21},
    		{"DF_1_NOW", Const, 21},
    		{"DF_1_ORIGIN", Const, 21},
    		{"DF_1_PIE", Const, 21},
    		{"DF_1_SINGLETON", Const, 21},
    		{"DF_1_STUB", Const, 21},
    		{"DF_1_SYMINTPOSE", Const, 21},
    		{"DF_1_TRANS", Const, 21},
    		{"DF_1_WEAKFILTER", Const, 21},
    		{"DF_BIND_NOW", Const, 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)
Back to top