type runtime.MemProfileRecord

10 uses

	runtime (current package)
		mprof.go#L523: type MemProfileRecord struct {
		mprof.go#L530: func (r *MemProfileRecord) InUseBytes() int64 { return r.AllocBytes - r.FreeBytes }
		mprof.go#L533: func (r *MemProfileRecord) InUseObjects() int64 {
		mprof.go#L539: func (r *MemProfileRecord) Stack() []uintptr {
		mprof.go#L569: func MemProfile(p []MemProfileRecord, inuseZero bool) (n int, ok bool) {
		mprof.go#L618: func record(r *MemProfileRecord, b *bucket) {

	runtime/pprof
		pprof.go#L561: 	var p []runtime.MemProfileRecord
		pprof.go#L567: 		p = make([]runtime.MemProfileRecord, n+50)
		pprof.go#L586: 	var total runtime.MemProfileRecord
		protomem.go#L15: func writeHeapProto(w io.Writer, p []runtime.MemProfileRecord, rate int64, defaultSampleType string) error {