type internal/profilerecord.MemProfileRecord
9 uses
internal/profilerecord (current package)
profilerecord.go#L15: type MemProfileRecord struct {
profilerecord.go#L21: func (r *MemProfileRecord) InUseBytes() int64 { return r.AllocBytes - r.FreeBytes }
profilerecord.go#L22: func (r *MemProfileRecord) InUseObjects() int64 { return r.AllocObjects - r.FreeObjects }
runtime
mprof.go#L995: return memProfileInternal(len(p), inuseZero, func(r profilerecord.MemProfileRecord) {
mprof.go#L1011: func memProfileInternal(size int, inuseZero bool, copyFn func(profilerecord.MemProfileRecord)) (n int, ok bool) {
mprof.go#L1056: r := profilerecord.MemProfileRecord{
mprof.go#L1071: func copyMemProfileRecord(dst *MemProfileRecord, src profilerecord.MemProfileRecord) {
mprof.go#L1090: func pprof_memProfileInternal(p []profilerecord.MemProfileRecord, inuseZero bool) (n int, ok bool) {
mprof.go#L1091: return memProfileInternal(len(p), inuseZero, func(r profilerecord.MemProfileRecord) {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |