runtime.Frame.Function (field)

24 uses

	runtime (current package)
		symtab.go#L47: 	Function string
		symtab.go#L168: 			Function:  funcNameForPrint(sf.name()),
		symtab.go#L233: 		return f.Function
		symtab.go#L314: 			Function: gostring(arg.funcName),
		tracestack.go#L242: 	fn := f.Function

	runtime/pprof
		pprof.go#L583: 		name := frame.Function
		proto.go#L216: 	if frame.Function == "runtime.goexit" {
		proto.go#L223: 	if frame.PC == 0 || frame.Function == "" || frame.File == "" || frame.Line == 0 {
		proto.go#L233: 	for frame.Function != "runtime.goexit" && more {

	golang.org/x/tools/internal/pkgbits
		sync.go#L38: 		visit(frame.File, frame.Line, frame.Function, frame.PC-frame.Entry)

	internal/bisect
		bisect.go#L499: 		buf = append(buf, f.Function...)

	log/slog
		record.go#L228: 		Function: f.Function,
		value.go#L529: 		fmt.Fprintf(&b, "called from %s (%s:%d)\n", frame.Function, frame.File, frame.Line)

	net/http
		server.go#L1139: 		if !strings.HasPrefix(frame.Function, "net/http.") {
		server.go#L1152: 		w.conn.server.logf("http: response.WriteHeader on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
		server.go#L1157: 		w.conn.server.logf("http: superfluous response.WriteHeader call from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
		server.go#L1633: 			w.conn.server.logf("http: response.Write on hijacked connection from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)
		server.go#L3913: 			logf(tw.req, "http: superfluous response.WriteHeader call from %s (%s:%d)", caller.Function, path.Base(caller.File), caller.Line)

	reflect
		value.go#L195: 		name := frame.Function

	testing
		testing.go#L762: 		if frame.Function == "runtime.gopanic" {
		testing.go#L765: 		if frame.Function == c.cleanupName {
		testing.go#L772: 		if frame.Function == c.runner {
		testing.go#L805: 		if _, ok := c.helperNames[frame.Function]; !ok {
		testing.go#L1749: 	return frame.Function