type runtime.BlockProfileRecord

7 uses

	runtime (current package)
		mprof.go#L650: type BlockProfileRecord struct {
		mprof.go#L663: func BlockProfile(p []BlockProfileRecord) (n int, ok bool) {
		mprof.go#L706: func MutexProfile(p []BlockProfileRecord) (n int, ok bool) {

	runtime/pprof
		pprof.go#L378: func printCountCycleProfile(w io.Writer, countName, cycleName string, scaler func(int64, float64) (int64, float64), records []runtime.BlockProfileRecord) error {
		pprof.go#L864: func writeProfileInternal(w io.Writer, debug int, name string, runtimeProfile func([]runtime.BlockProfileRecord) (int, bool), scaleProfile func(int64, float64) (int64, float64)) error {
		pprof.go#L865: 	var p []runtime.BlockProfileRecord
		pprof.go#L868: 		p = make([]runtime.BlockProfileRecord, n+50)