Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,325 for strtab (0.2 sec)

  1. src/internal/coverage/decodemeta/decode.go

    	}
    
    	// Read the table itself.
    	d.strtab = stringtab.NewReader(d.r)
    	d.strtab.Read()
    	return nil
    }
    
    func (d *CoverageMetaDataDecoder) PackagePath() string {
    	return d.strtab.Get(d.hdr.PkgPath)
    }
    
    func (d *CoverageMetaDataDecoder) PackageName() string {
    	return d.strtab.Get(d.hdr.PkgName)
    }
    
    func (d *CoverageMetaDataDecoder) ModulePath() string {
    	return d.strtab.Get(d.hdr.ModulePath)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/internal/coverage/decodemeta/decodefile.go

    	if err != nil {
    		return err
    	}
    	if nr != int(r.hdr.StrTabLength) {
    		return fmt.Errorf("error: short read on string table")
    	}
    	slr := slicereader.NewReader(b, false /* not readonly */)
    	r.strtab = stringtab.NewReader(slr)
    	r.strtab.Read()
    
    	if r.debug {
    		fmt.Fprintf(os.Stderr, "=-= read-in header is: %+v\n", *r)
    	}
    
    	return nil
    }
    
    func (r *CoverageMetaFileReader) rdUint64() (uint64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/debug/elf/testdata/multiple-code-sections.c

    // Strip with:
    // strip --only-keep-debug \
    //       --remove-section=.eh_frame \
    //       --remove-section=.eh_frame_hdr \
    //       --remove-section=.shstrtab \
    //       --remove-section=.strtab \
    //       --remove-section=.symtab \
    //       --remove-section=.note.gnu.build-id \
    //       --remove-section=.note.ABI-tag \
    //       --remove-section=.dynamic \
    //       --remove-section=.gnu.hash \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 31 18:42:38 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. src/debug/macho/file.go

    			n.Value = uint64(n32.Value)
    		}
    		if n.Name >= uint32(len(strtab)) {
    			return nil, &FormatError{offset, "invalid name in symbol table", n.Name}
    		}
    		// We add "_" to Go symbols. Strip it here. See issue 33808.
    		name := cstring(strtab[n.Name:])
    		if strings.Contains(name, ".") && name[0] == '_' {
    			name = name[1:]
    		}
    		symtab = append(symtab, Symbol{
    			Name:  name,
    			Type:  n.Type,
    			Sect:  n.Sect,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     0x0000001b (INIT_ARRAYSZ)               12 (Bytes)
     0x00000004 (HASH)                       0x1a1b34
     0x6ffffef5 (GNU_HASH)                   0x1b8
     0x00000005 (STRTAB)                     0xd438
     0x00000006 (SYMTAB)                     0x3ec8
     0x0000000a (STRSZ)                      23846 (Bytes)
     0x0000000b (SYMENT)                     16 (Bytes)
     0x00000003 (PLTGOT)                     0x1a8000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/debug/elf/file_test.go

    	//   [65294] .symtab           SYMTAB          00000000 03fc7c 0ff0a0 10     65296   2  4
    	//   [65295] .symtab_shndx     SYMTAB SECTION  00000000 13ed1c 03fc28 04     65294   0  4
    	//   [65296] .strtab           STRTAB          00000000 17e944 08f74d 00      0   0  1
    	//   [65297] .shstrtab         STRTAB          00000000 20e091 0cf3bb 00      0   0  1
    
    	var buf bytes.Buffer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    			size: uint16(len(ldr.SymName(sym)) + 1), // + null terminator
    			name: ldr.SymName(sym),
    		}
    		stlen += uint32(2 + ldstr.size) // 2 = sizeof ldstr.size
    		symtab = append(symtab, lds)
    		strtab = append(strtab, ldstr)
    
    	}
    
    	hdr.Lnsyms = int32(len(symtab))
    	hdr.Lrldoff = hdr.Lsymoff + uint64(24*hdr.Lnsyms) // 24 = sizeof one symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    	var shstroff uint64
    	if !*FlagS {
    		sh := elfshname(".symtab")
    		sh.Type = uint32(elf.SHT_SYMTAB)
    		sh.Off = uint64(symo)
    		sh.Size = uint64(symSize)
    		sh.Addralign = uint64(ctxt.Arch.RegSize)
    		sh.Entsize = 8 + 2*uint64(ctxt.Arch.RegSize)
    		sh.Link = uint32(elfshname(".strtab").shnum)
    		sh.Info = uint32(elfglobalsymndx)
    
    		sh = elfshname(".strtab")
    		sh.Type = uint32(elf.SHT_STRTAB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	for _, sec := range ef.Sections {
    		want := elf.SHT_NULL
    		switch sec.Name {
    		case ".text", ".data":
    			want = elf.SHT_PROGBITS
    		case ".bss":
    			want = elf.SHT_NOBITS
    		case ".symtab":
    			want = elf.SHT_SYMTAB
    		case ".strtab":
    			want = elf.SHT_STRTAB
    		case ".init_array":
    			want = elf.SHT_INIT_ARRAY
    		case ".fini_array":
    			want = elf.SHT_FINI_ARRAY
    		case ".preinit_array":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. internal/grid/stream.go

    	// If the request context is canceled, the stream will no longer process requests.
    	// Requests sent cannot be used any further by the called.
    	Requests chan<- []byte
    
    	muxID uint64
    	ctx   context.Context
    }
    
    // Send a payload to the remote server.
    func (s *Stream) Send(b []byte) error {
    	if s.Requests == nil {
    		return errors.New("stream does not accept requests")
    	}
    	select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top