func runtime.Callers

24 uses

	runtime (current package)
		extern.go#L338: func Callers(skip int, pc []uintptr) int {

	runtime/pprof
		pprof.go#L328: 	n := runtime.Callers(skip+1, stk[:])

	go.pact.im/x/slogtime
		slogtime.go#L99: 	runtime.Callers(3, pcs[:])

	go.uber.org/zap/internal/stacktrace
		stack.go#L83: 	numFrames := runtime.Callers(
		stack.go#L95: 			numFrames = runtime.Callers(skip+2, pcs)

	golang.org/x/net/trace
		events.go#L139: 	n := runtime.Callers(2, el.stack)

	golang.org/x/tools/internal/pkgbits
		decoder.go#L349: 	n := runtime.Callers(2, readerPCs[:])
		encoder.go#L241: 		n := runtime.Callers(2, pcs)

	internal/bisect
		bisect.go#L428: 	n := runtime.Callers(2, stk[:])

	log/slog
		logger.go#L94: 		runtime.Callers(4, pcs[:])
		logger.go#L251: 		runtime.Callers(3, pcs[:])
		logger.go#L271: 		runtime.Callers(3, pcs[:])
		value.go#L520: 	n := runtime.Callers(skip+1, pcs)

	net/http
		server.go#L1170: 	n := runtime.Callers(1, pc)

	reflect
		value.go#L186: 	n := runtime.Callers(1, pc[:])

	testing
		benchmark.go#L818: 	n := runtime.Callers(2, pc[:])
		fuzz.go#L118: 	n := runtime.Callers(2, pc[:]) // skip runtime.Callers + Helper
		fuzz.go#L303: 		n := runtime.Callers(2, pc[:])
		testing.go#L746: 	n := runtime.Callers(skip+2, pc[:])
		testing.go#L1274: 	n := runtime.Callers(2, pc[:]) // skip runtime.Callers + Helper
		testing.go#L1291: 	n := runtime.Callers(2, pc[:])
		testing.go#L1643: 	n := runtime.Callers(skip+2, pc[:]) // skip + runtime.Callers + callerName
		testing.go#L1965: 	n := runtime.Callers(2, pc[:])
		testing.go#L2027: 	n := runtime.Callers(2, pc[:])