type internal/profilerecord.StackRecord

25 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#L1263: func pprof_goroutineLeakProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
		mprof.go#L1268: func goroutineLeakProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
		mprof.go#L1280: 	records []profilerecord.StackRecord
		mprof.go#L1319: func goroutineLeakProfileWithLabelsConcurrent(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
		mprof.go#L1356: func goroutineProfileWithLabelsConcurrent(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
		mprof.go#L1573: func goroutineProfileWithLabelsSync(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
		mprof.go#L1659: 	records := make([]profilerecord.StackRecord, len(p))
		mprof.go#L1671: func goroutineProfileInternal(p []profilerecord.StackRecord) (n int, ok bool) {
		mprof.go#L1675: func saveg(pc, sp uintptr, gp *g, r *profilerecord.StackRecord, pcbuf []uintptr) {

	runtime/pprof
		pprof.go#L769: 	return writeRuntimeProfile(w, debug, "threadcreate", func(p []profilerecord.StackRecord, _ []unsafe.Pointer) (n int, ok bool) {
		pprof.go#L834: func writeRuntimeProfile(w io.Writer, debug int, name string, fetch func([]profilerecord.StackRecord, []unsafe.Pointer) (int, bool)) error {
		pprof.go#L841: 	var p []profilerecord.StackRecord
		pprof.go#L849: 		p = make([]profilerecord.StackRecord, n+10)
		pprof.go#L863: 	stk    []profilerecord.StackRecord
		pprof.go#L1036: func pprof_goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool)
		pprof.go#L1039: func pprof_goroutineLeakProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool)
		pprof.go#L1054: func pprof_threadCreateInternal(p []profilerecord.StackRecord) (n int, ok bool)