func runtime.FuncForPC

7 uses

	runtime (current package)
		cgocall.go#L876: 		function := FuncForPC(pc)
		symtab.go#L783: func FuncForPC(pc uintptr) *Func {

	runtime/pprof
		protomem.go#L39: 					if f := runtime.FuncForPC(addr); f != nil && (strings.HasPrefix(f.Name(), "runtime.") || strings.HasPrefix(f.Name(), "internal/runtime/")) {

	golang.org/x/net/trace
		events.go#L376: 		f := runtime.FuncForPC(pc)

	internal/reflectlite
		value.go#L183: 	f := runtime.FuncForPC(pc)

	net/http/pprof
		pprof.go#L224: 			f := runtime.FuncForPC(uintptr(pc))

	reflect
		value.go#L1146: 	rf := runtime.FuncForPC(pc)