func runtime.Stack

13 uses

	runtime (current package)
		mprof.go#L847: func Stack(buf []byte, all bool) int {

	runtime/debug
		stack.go#L24: 		n := runtime.Stack(buf, false)

	runtime/pprof
		pprof.go#L694: 		n := runtime.Stack(buf, true)

	database/sql
		sql.go#L3430: 	return string(buf[:runtime.Stack(buf[:], false)])

	github.com/robfig/cron/v3
		chain.go#L45: 					buf = buf[:runtime.Stack(buf, false)]

	go.uber.org/goleak/internal/stack
		stacks.go#L124: 		if n := runtime.Stack(buf, all); n < i {

	golang.org/x/net/http2
		gotrack.go#L55: 	b = b[:runtime.Stack(b, false)]
		server.go#L2304: 				buf = buf[:runtime.Stack(buf, false)]

	golang.org/x/net/trace
		trace.go#L405: 		n := runtime.Stack(buf, false)
		trace.go#L779: 		n := runtime.Stack(buf, false)

	net/http
		h2_bundle.go#L3048: 	b = b[:runtime.Stack(b, false)]
		h2_bundle.go#L5896: 				buf = buf[:runtime.Stack(buf, false)]
		server.go#L1825: 			buf = buf[:runtime.Stack(buf, false)]