Searched refs:dvmHeapSourceGetValue (Results 1 – 7 of 7) sorted by relevance
/dalvik/vm/alloc/ |
D | HeapDebug.cpp | 24 return (int)dvmHeapSourceGetValue(HS_FOOTPRINT, NULL, 0); in dvmGetHeapDebugInfo() 26 return (int)dvmHeapSourceGetValue(HS_BYTES_ALLOCATED, NULL, 0); in dvmGetHeapDebugInfo()
|
D | HeapSource.h | 104 size_t dvmHeapSourceGetValue(HeapSourceValueSpec spec,
|
D | DdmHeap.cpp | 113 set4BE(b, dvmHeapSourceGetValue(HS_FOOTPRINT, NULL, 0)); b += 4; in dvmDdmSendHeapInfo() 116 set4BE(b, dvmHeapSourceGetValue(HS_BYTES_ALLOCATED, NULL, 0)); b += 4; in dvmDdmSendHeapInfo() 119 set4BE(b, dvmHeapSourceGetValue(HS_OBJECTS_ALLOCATED, NULL, 0)); b += 4; in dvmDdmSendHeapInfo()
|
D | Heap.cpp | 630 currAllocated = dvmHeapSourceGetValue(HS_BYTES_ALLOCATED, NULL, 0); in dvmCollectGarbageInternal() 631 currFootprint = dvmHeapSourceGetValue(HS_FOOTPRINT, NULL, 0); in dvmCollectGarbageInternal()
|
D | HeapSource.cpp | 792 size_t dvmHeapSourceGetValue(HeapSourceValueSpec spec, size_t perHeapStats[], in dvmHeapSourceGetValue() function
|
D | Copying.cpp | 527 size_t dvmHeapSourceGetValue(HeapSourceValueSpec spec, in dvmHeapSourceGetValue() function
|
/dalvik/vm/native/ |
D | dalvik_system_VMDebug.cpp | 793 dvmHeapSourceGetValue(HS_BYTES_ALLOCATED, (size_t*) &per_heap_allocated, 2); in Dalvik_dalvik_system_VMDebug_getHeapSpaceStats() 794 dvmHeapSourceGetValue(HS_FOOTPRINT, (size_t*) &per_heap_size, 2); in Dalvik_dalvik_system_VMDebug_getHeapSpaceStats()
|