Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DT_FLAGS (0.18 sec)

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

    			elfFile, err := elf.NewFile(fi)
    			if err != nil {
    				t.Skip("The system may not support ELF, skipped.")
    			}
    			defer elfFile.Close()
    
    			flags, err := elfFile.DynValue(elf.DT_FLAGS)
    			if err != nil {
    				t.Fatalf("failed to get DT_FLAGS: %v", err)
    			}
    
    			flags1, err := elfFile.DynValue(elf.DT_FLAGS_1)
    			if err != nil {
    				t.Fatalf("failed to get DT_FLAGS_1: %v", err)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	DT_FINI_ARRAYSZ DynTag = 28 /* Size in bytes of the array of termination functions. */
    	DT_RUNPATH      DynTag = 29 /* String table offset of a null-terminated library search path string. */
    	DT_FLAGS        DynTag = 30 /* Object specific flag values. */
    	DT_ENCODING     DynTag = 32 /* Values greater than or equal to DT_ENCODING
    	   and less than DT_LOOS follow the rules for
    	   the interpretation of the d_un union
    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/link/internal/ld/elf.go

    		}
    	}
    
    	s = ldr.CreateSymForUpdate(".dynamic", 0)
    
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DT_ENCODING", Const, 0},
    		{"DT_FEATURE", Const, 16},
    		{"DT_FILTER", Const, 16},
    		{"DT_FINI", Const, 0},
    		{"DT_FINI_ARRAY", Const, 0},
    		{"DT_FINI_ARRAYSZ", Const, 0},
    		{"DT_FLAGS", Const, 0},
    		{"DT_FLAGS_1", Const, 16},
    		{"DT_GNU_CONFLICT", Const, 16},
    		{"DT_GNU_CONFLICTSZ", Const, 16},
    		{"DT_GNU_HASH", Const, 16},
    		{"DT_GNU_LIBLIST", 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_ENCODING DynTag
    pkg debug/elf, const DT_FINI DynTag
    pkg debug/elf, const DT_FINI_ARRAY DynTag
    pkg debug/elf, const DT_FINI_ARRAYSZ DynTag
    pkg debug/elf, const DT_FLAGS DynTag
    pkg debug/elf, const DT_HASH DynTag
    pkg debug/elf, const DT_HIOS DynTag
    pkg debug/elf, const DT_HIPROC DynTag
    pkg debug/elf, const DT_INIT DynTag
    pkg debug/elf, const DT_INIT_ARRAY 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_DEBUG = 21
    pkg debug/elf, const DT_ENCODING = 32
    pkg debug/elf, const DT_FINI = 13
    pkg debug/elf, const DT_FINI_ARRAY = 26
    pkg debug/elf, const DT_FINI_ARRAYSZ = 28
    pkg debug/elf, const DT_FLAGS = 30
    pkg debug/elf, const DT_HASH = 4
    pkg debug/elf, const DT_HIOS = 1879044096
    pkg debug/elf, const DT_HIPROC = 2147483647
    pkg debug/elf, const DT_INIT = 12
    pkg debug/elf, const DT_INIT_ARRAY = 25
    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