func runtime.pcvalue
7 uses
runtime (current package)
symtab.go#L741: func pcvalue(f funcInfo, off uint32, targetpc uintptr, cache *pcvalueCache, strict bool) (int32, uintptr) {
symtab.go#L889: fileno, _ := pcvalue(f, f.pcfile, targetpc, nil, strict)
symtab.go#L890: line, _ = pcvalue(f, f.pcln, targetpc, nil, strict)
symtab.go#L904: x, _ := pcvalue(f, f.pcsp, targetpc, cache, true)
symtab.go#L938: r, _ := pcvalue(f, pcdatastart(f, table), targetpc, cache, true)
symtab.go#L946: r, _ := pcvalue(f, pcdatastart(f, table), targetpc, cache, strict)
symtab.go#L956: return pcvalue(f, pcdatastart(f, table), targetpc, nil, true)