type runtime.StackRecord

14 uses

	runtime (current package)
		mprof.go#L475: type StackRecord struct {
		mprof.go#L481: func (r *StackRecord) Stack() []uintptr {
		mprof.go#L653: 	StackRecord
		mprof.go#L735: func ThreadCreateProfile(p []StackRecord) (n int, ok bool) {
		mprof.go#L752: func runtime_goroutineProfileWithLabels(p []StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
		mprof.go#L757: func goroutineProfileWithLabels(p []StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
		mprof.go#L831: func GoroutineProfile(p []StackRecord) (n int, ok bool) {
		mprof.go#L836: func saveg(pc, sp uintptr, gp *g, r *StackRecord) {

	runtime/pprof
		pprof.go#L667: 	return writeRuntimeProfile(w, debug, "threadcreate", func(p []runtime.StackRecord, _ []unsafe.Pointer) (n int, ok bool) {
		pprof.go#L678: func runtime_goroutineProfileWithLabels(p []runtime.StackRecord, labels []unsafe.Pointer) (n int, ok bool)
		pprof.go#L709: func writeRuntimeProfile(w io.Writer, debug int, name string, fetch func([]runtime.StackRecord, []unsafe.Pointer) (int, bool)) error {
		pprof.go#L716: 	var p []runtime.StackRecord
		pprof.go#L723: 		p = make([]runtime.StackRecord, n+10)
		pprof.go#L737: 	stk    []runtime.StackRecord