Lines Matching refs:heap
304 MEMFindParentHeap( MEMHeapHandle heap ) in MEMFindParentHeap() argument
310 if ( pHeapHd == heap ) in MEMFindParentHeap()
315 if ( GetUIntPtr( pHeapHd->heapStart ) <= GetUIntPtr( heap ) in MEMFindParentHeap()
316 && GetUIntPtr( heap ) < GetUIntPtr( pHeapHd->heapEnd ) in MEMFindParentHeap()
319 return FindParentHeap_( pHeapHd, heap ); in MEMFindParentHeap()
340 MEMDumpHeap( MEMHeapHandle heap ) in MEMDumpHeap() argument
342 MEMiHeapHead* pHeapHd = heap; in MEMDumpHeap()
347 LockHeap( heap ); in MEMDumpHeap()
348 MEMiDumpExpHeap(heap); in MEMDumpHeap()
349 UnlockHeap( heap ); in MEMDumpHeap()
354 LockHeap( heap ); in MEMDumpHeap()
355 MEMiDumpFrmHeap(heap); in MEMDumpHeap()
356 UnlockHeap( heap ); in MEMDumpHeap()
361 LockHeap( heap ); in MEMDumpHeap()
362 MEMiDumpUnitHeap(heap); in MEMDumpHeap()
363 UnlockHeap( heap ); in MEMDumpHeap()
367 OSReport("[OS Foundation] dump heap : unknown heap. - %p\n", heap); in MEMDumpHeap()