func runtime.Callers
18 uses
runtime (current package)
extern.go#L325: func Callers(skip int, pc []uintptr) int {
runtime/pprof
pprof.go#L334: n := runtime.Callers(skip+1, stk[:])
go.uber.org/zap
stacktrace.go#L82: numFrames := runtime.Callers(
stacktrace.go#L94: 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[:])
net/http
server.go#L1178: n := runtime.Callers(1, pc)
reflect
value.go#L189: n := runtime.Callers(1, pc[:])
testing
benchmark.go#L804: 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#L741: n := runtime.Callers(skip+2, pc[:])
testing.go#L1177: n := runtime.Callers(2, pc[:]) // skip runtime.Callers + Helper
testing.go#L1194: n := runtime.Callers(2, pc[:])
testing.go#L1516: n := runtime.Callers(skip+2, pc[:]) // skip + runtime.Callers + callerName
testing.go#L1820: n := runtime.Callers(2, pc[:])