Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PCToFunc (0.22 sec)

  1. src/debug/gosym/symtab.go

    		t.Funcs = t.go12line.go12Funcs()
    	}
    	if obj != nil {
    		obj.Funcs = t.Funcs[lastf:]
    	}
    	return &t, nil
    }
    
    // PCToFunc returns the function containing the program counter pc,
    // or nil if there is no such function.
    func (t *Table) PCToFunc(pc uint64) *Func {
    	funcs := t.Funcs
    	for len(funcs) > 0 {
    		m := len(funcs) / 2
    		fn := &funcs[m]
    		switch {
    		case pc < fn.Entry:
    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

    		{"(*Sym).ReceiverName", Method, 0},
    		{"(*Sym).Static", Method, 0},
    		{"(*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},
    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) LineToPC(string, int) (uint64, *Func, error)
    pkg debug/gosym, method (*Table) LookupFunc(string) *Func
    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
    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