Lines Matching refs:heap
170 ListContainsHeap_( MEMList* list, const MEMiHeapHead* heap ) in ListContainsHeap_() argument
176 if ( pHeapHd == heap ) in ListContainsHeap_()
335 MEMFindParentHeap( MEMHeapHandle heap ) in MEMFindParentHeap() argument
341 if ( pHeapHd == heap ) in MEMFindParentHeap()
346 if ( GetUIntPtr( pHeapHd->heapStart ) <= GetUIntPtr( heap ) in MEMFindParentHeap()
347 && GetUIntPtr( heap ) < GetUIntPtr( pHeapHd->heapEnd ) in MEMFindParentHeap()
350 return FindParentHeap_( pHeapHd, heap ); in MEMFindParentHeap()
371 MEMDumpHeap( MEMHeapHandle heap ) in MEMDumpHeap() argument
373 MEMiHeapHead* pHeapHd = heap; in MEMDumpHeap()
378 LockHeap( heap ); in MEMDumpHeap()
379 MEMiDumpExpHeap(heap); in MEMDumpHeap()
380 UnlockHeap( heap ); in MEMDumpHeap()
385 LockHeap( heap ); in MEMDumpHeap()
386 MEMiDumpFrmHeap(heap); in MEMDumpHeap()
387 UnlockHeap( heap ); in MEMDumpHeap()
392 LockHeap( heap ); in MEMDumpHeap()
393 MEMiDumpUnitHeap(heap); in MEMDumpHeap()
394 UnlockHeap( heap ); in MEMDumpHeap()
398 OSReport("[OS Foundation] dump heap : unknown heap. - %p\n", heap); in MEMDumpHeap()