Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for line_str (0.34 sec)

  1. src/debug/dwarf/open.go

    	abbrev   []byte
    	aranges  []byte
    	frame    []byte
    	info     []byte
    	line     []byte
    	pubnames []byte
    	ranges   []byte
    	str      []byte
    
    	// New sections added in DWARF 5.
    	addr       []byte
    	lineStr    []byte
    	strOffsets []byte
    	rngLists   []byte
    
    	// parsed data
    	abbrevCache map[uint64]abbrevTable
    	bigEndian   bool
    	order       binary.ByteOrder
    	typeCache   map[Offset]Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/testdata/issue19418/main.go

    )
    
    func main() {
    	p, err := plugin.Open("plugin.so")
    	if err != nil {
    		panic(err)
    	}
    
    	val, err := p.Lookup("Val")
    	if err != nil {
    		panic(err)
    	}
    	got := *val.(*string)
    	const want = "linkstr"
    	if got != want {
    		fmt.Fprintf(os.Stderr, "issue19418 value is %q, want %q\n", got, want)
    		os.Exit(2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 511 bytes
    - Viewed (0)
Back to top