type internal/profilerecord.StackRecord
21 uses
internal/profilerecord (current package)
profilerecord.go#L11: type StackRecord struct {
runtime
mprof.go#L1279: return threadCreateProfileInternal(len(p), func(r profilerecord.StackRecord) {
mprof.go#L1289: func threadCreateProfileInternal(size int, copyFn func(profilerecord.StackRecord)) (n int, ok bool) {
mprof.go#L1297: r := profilerecord.StackRecord{Stack: mp.createstack[:]}
mprof.go#L1305: func pprof_threadCreateInternal(p []profilerecord.StackRecord) (n int, ok bool) {
mprof.go#L1306: return threadCreateProfileInternal(len(p), func(r profilerecord.StackRecord) {
mprof.go#L1313: func pprof_goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1318: func goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1330: records []profilerecord.StackRecord
mprof.go#L1369: func goroutineProfileWithLabelsConcurrent(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1583: func goroutineProfileWithLabelsSync(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
mprof.go#L1660: records := make([]profilerecord.StackRecord, len(p))
mprof.go#L1672: func goroutineProfileInternal(p []profilerecord.StackRecord) (n int, ok bool) {
mprof.go#L1676: func saveg(pc, sp uintptr, gp *g, r *profilerecord.StackRecord, pcbuf []uintptr) {
runtime/pprof
pprof.go#L740: return writeRuntimeProfile(w, debug, "threadcreate", func(p []profilerecord.StackRecord, _ []unsafe.Pointer) (n int, ok bool) {
pprof.go#L779: func writeRuntimeProfile(w io.Writer, debug int, name string, fetch func([]profilerecord.StackRecord, []unsafe.Pointer) (int, bool)) error {
pprof.go#L786: var p []profilerecord.StackRecord
pprof.go#L794: p = make([]profilerecord.StackRecord, n+10)
pprof.go#L808: stk []profilerecord.StackRecord
pprof.go#L978: func pprof_goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool)
pprof.go#L993: func pprof_threadCreateInternal(p []profilerecord.StackRecord) (n int, ok bool)