type internal/profilerecord.StackRecord
21 uses
internal/profilerecord (current package)
profilerecord.go#L11: type StackRecord struct {
runtime
mprof.go#L1215: return threadCreateProfileInternal(len(p), func(r profilerecord.StackRecord) {
mprof.go#L1225: func threadCreateProfileInternal(size int, copyFn func(profilerecord.StackRecord)) (n int, ok bool) {
mprof.go#L1233: r := profilerecord.StackRecord{Stack: mp.createstack[:]}
mprof.go#L1241: func pprof_threadCreateInternal(p []profilerecord.StackRecord) (n int, ok bool) {
mprof.go#L1242: return threadCreateProfileInternal(len(p), func(r profilerecord.StackRecord) {
mprof.go#L1249: func pprof_goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1254: func goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1266: records []profilerecord.StackRecord
mprof.go#L1305: func goroutineProfileWithLabelsConcurrent(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1511: func goroutineProfileWithLabelsSync(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1588: records := make([]profilerecord.StackRecord, len(p))
mprof.go#L1600: func goroutineProfileInternal(p []profilerecord.StackRecord) (n int, ok bool) {
mprof.go#L1604: func saveg(pc, sp uintptr, gp *g, r *profilerecord.StackRecord, pcbuf []uintptr) {
runtime/pprof
pprof.go#L732: return writeRuntimeProfile(w, debug, "threadcreate", func(p []profilerecord.StackRecord, _ []unsafe.Pointer) (n int, ok bool) {
pprof.go#L771: func writeRuntimeProfile(w io.Writer, debug int, name string, fetch func([]profilerecord.StackRecord, []unsafe.Pointer) (int, bool)) error {
pprof.go#L778: var p []profilerecord.StackRecord
pprof.go#L786: p = make([]profilerecord.StackRecord, n+10)
pprof.go#L800: stk []profilerecord.StackRecord
pprof.go#L970: func pprof_goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool)
pprof.go#L985: func pprof_threadCreateInternal(p []profilerecord.StackRecord) (n int, ok bool)