func runtime.Stack

13 uses

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

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

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

	cloud.google.com/go/errorreporting
		errors.go#L178: 		stack = chopStack(buf[0:runtime.Stack(buf[:], false)])

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

	golang.org/x/net/http2
		gotrack.go#L55: 	b = b[:runtime.Stack(b, false)]
		server.go#L2161: 				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)

	golang.org/x/pkgsite/internal/derrors
		derrors.go#L260: 	n := runtime.Stack(buf[:], false)

	net/http
		h2_bundle.go#L2911: 	b = b[:runtime.Stack(b, false)]
		h2_bundle.go#L5716: 				buf = buf[:runtime.Stack(buf, false)]
		server.go#L1824: 			buf = buf[:runtime.Stack(buf, false)]