Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SHT_DYNAMIC (0.14 sec)

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

    	// and loadable (has an address), nonzero size.
    	secs := []*elf.Section{}
    	for _, s := range elfFile.Sections {
    		if s.Type != elf.SHT_PROGBITS && s.Type != elf.SHT_DYNAMIC {
    			continue
    		}
    		if s.Addr == 0 || s.Size == 0 {
    			continue
    		}
    		secs = append(secs, s)
    	}
    
    	secOverlaps := func(s1, s2 *elf.Section) bool {
    		st1 := s1.Addr
    		st2 := s2.Addr
    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/file.go

    	switch tag {
    	case DT_NEEDED, DT_SONAME, DT_RPATH, DT_RUNPATH:
    	default:
    		return nil, fmt.Errorf("non-string-valued tag %v", tag)
    	}
    	ds := f.SectionByType(SHT_DYNAMIC)
    	if ds == nil {
    		// not dynamic, so no libraries
    		return nil, nil
    	}
    	d, err := ds.Data()
    	if err != nil {
    		return nil, err
    	}
    
    	dynSize := 8
    	if f.Class == ELFCLASS64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	SHT_RELA           SectionType = 4          /* relocation section with addends */
    	SHT_HASH           SectionType = 5          /* symbol hash table section */
    	SHT_DYNAMIC        SectionType = 6          /* dynamic section */
    	SHT_NOTE           SectionType = 7          /* note section */
    	SHT_NOBITS         SectionType = 8          /* no space section */
    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/link/internal/ld/elf.go

    		sh.Link = uint32(elfshname(".dynsym").shnum)
    		shsym(sh, ldr, ldr.Lookup(".hash", 0))
    
    		/* sh and elf.PT_DYNAMIC for .dynamic section */
    		sh = elfshname(".dynamic")
    
    		sh.Type = uint32(elf.SHT_DYNAMIC)
    		sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_WRITE)
    		sh.Entsize = 2 * uint64(ctxt.Arch.RegSize)
    		sh.Addralign = uint64(ctxt.Arch.RegSize)
    		sh.Link = uint32(elfshname(".dynstr").shnum)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SHN_HIRESERVE", Const, 0},
    		{"SHN_LOOS", Const, 0},
    		{"SHN_LOPROC", Const, 0},
    		{"SHN_LORESERVE", Const, 0},
    		{"SHN_UNDEF", Const, 0},
    		{"SHN_XINDEX", Const, 0},
    		{"SHT_DYNAMIC", Const, 0},
    		{"SHT_DYNSYM", Const, 0},
    		{"SHT_FINI_ARRAY", Const, 0},
    		{"SHT_GNU_ATTRIBUTES", Const, 0},
    		{"SHT_GNU_HASH", Const, 0},
    		{"SHT_GNU_LIBLIST", Const, 0},
    		{"SHT_GNU_VERDEF", 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