Searched defs:BlockProfileRecord (Results 1 – 4 of 4) sorted by relevance
/prebuilts/go/linux-x86/src/internal/profilerecord/ |
D | profilerecord.go | 24 type BlockProfileRecord struct { struct 25 Count int64 26 Cycles int64 27 Stack []uintptr
|
/prebuilts/go/linux-x86/src/runtime/ |
D | mprof.go | 1109 type BlockProfileRecord struct { struct 1110 Count int64 1111 Cycles int64 1112 StackRecord 1122 func BlockProfile(p []BlockProfileRecord) (n int, ok bool) { 1134 func expandFrames(p []BlockProfileRecord) { 1157 func blockProfileInternal(size int, copyFn func(profilerecord.BlockProfileRecord)) (n int, ok bool)… 1187 func copyBlockProfileRecord(dst *BlockProfileRecord, src profilerecord.BlockProfileRecord) { 1208 func pprof_blockProfileInternal(p []profilerecord.BlockProfileRecord) (n int, ok bool) { 1221 func MutexProfile(p []BlockProfileRecord) (n int, ok bool) { [all …]
|
/prebuilts/go/linux-x86/src/runtime/pprof/ |
D | pprof.go | 430 …CycleProfile(w io.Writer, countName, cycleName string, records []profilerecord.BlockProfileRecord)… 984 func pprof_blockProfileInternal(p []profilerecord.BlockProfileRecord) (n int, ok bool) 987 func pprof_mutexProfileInternal(p []profilerecord.BlockProfileRecord) (n int, ok bool)
|
D | pprof_test.go | 1008 func blockRecordStacks(records []runtime.BlockProfileRecord) (res [][]string) { 2841 func testProfileRecordNullPadding[T runtime.StackRecord | runtime.MemProfileRecord | runtime.BlockP…
|