runtime.Func.Name (method)
8 uses
runtime (current package)
symtab.go#L781: func (f *Func) Name() string {
runtime/pprof
protomem.go#L39: if f := runtime.FuncForPC(addr); f != nil && (strings.HasPrefix(f.Name(), "runtime.") || strings.HasPrefix(f.Name(), "internal/runtime/")) {
github.com/google/go-cmp/cmp/internal/function
func.go#L76: fullName := fnc.Name() // e.g., "long/path/name/mypkg.(*MyType).(long/path/name/mypkg.myMethod)-fm"
golang.org/x/net/trace
events.go#L381: name := f.Name()
internal/reflectlite
value.go#L185: return f.Name()
net/http/pprof
pprof.go#L225: fmt.Fprintf(&buf, "%#x %s\n", pc, f.Name())
reflect
value.go#L1146: return rf.Name()
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)