Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SymByAddr (0.33 sec)

  1. src/debug/gosym/symtab.go

    	for i := range t.Funcs {
    		f := &t.Funcs[i]
    		if f.Sym.Name == name {
    			return f
    		}
    	}
    	return nil
    }
    
    // SymByAddr returns the text, data, or bss symbol starting at the given address.
    func (t *Table) SymByAddr(addr uint64) *Sym {
    	for i := range t.Syms {
    		s := &t.Syms[i]
    		switch s.Type {
    		case 'T', 't', 'L', 'l', 'D', 'd', 'B', 'b':
    			if s.Value == addr {
    				return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Table).LineToPC", Method, 0},
    		{"(*Table).LookupFunc", Method, 0},
    		{"(*Table).LookupSym", Method, 0},
    		{"(*Table).PCToFunc", Method, 0},
    		{"(*Table).PCToLine", Method, 0},
    		{"(*Table).SymByAddr", Method, 0},
    		{"(*UnknownLineError).Error", Method, 0},
    		{"(Func).BaseName", Method, 0},
    		{"(Func).PackageName", Method, 0},
    		{"(Func).ReceiverName", Method, 0},
    		{"(Func).Static", Method, 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)
  3. api/go1.txt

    pkg debug/gosym, method (*Table) LookupSym(string) *Sym
    pkg debug/gosym, method (*Table) PCToFunc(uint64) *Func
    pkg debug/gosym, method (*Table) PCToLine(uint64) (string, int, *Func)
    pkg debug/gosym, method (*Table) SymByAddr(uint64) *Sym
    pkg debug/gosym, method (*UnknownLineError) Error() string
    pkg debug/gosym, method (Func) BaseName() string
    pkg debug/gosym, method (Func) PackageName() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top