func runtime.Callers
17 uses
runtime (current package)
extern.go#L228: func Callers(skip int, pc []uintptr) int {
runtime/pprof
pprof.go#L289: n := runtime.Callers(skip+1, stk[:])
github.com/go-pg/migrations/v8
collection.go#L128: n := runtime.Callers(1, pcs[:])
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#L350: n := runtime.Callers(2, readerPCs[:])
encoder.go#L241: n := runtime.Callers(2, pcs)
net/http
server.go#L1119: n := runtime.Callers(1, pc)
testing
benchmark.go#L638: n := runtime.Callers(2, pc[:])
fuzz.go#L118: n := runtime.Callers(2, pc[:]) // skip runtime.Callers + Helper
fuzz.go#L301: n := runtime.Callers(2, pc[:])
testing.go#L582: n := runtime.Callers(skip+2, pc[:])
testing.go#L1000: n := runtime.Callers(2, pc[:]) // skip runtime.Callers + Helper
testing.go#L1017: n := runtime.Callers(2, pc[:])
testing.go#L1211: n := runtime.Callers(skip+2, pc[:]) // skip + runtime.Callers + callerName
testing.go#L1463: n := runtime.Callers(2, pc[:])