/external/chromium_org/base/process/ |
memory_win.cc | 45 // Gives us some extra space in the array in case a thread is creating heaps 48 scoped_ptr<HANDLE[]> heaps(new HANDLE[number_heaps + MARGIN]); 49 number_heaps = GetProcessHeaps(number_heaps + MARGIN, heaps.get()); 55 // Don't bother with the result code. It may fails on heaps that have the 57 heap_set(heaps[i],
|
memory_unittest.cc | 77 HANDLE heaps[1024] = { 0 }; 78 unsigned number_heaps = GetProcessHeaps(1024, heaps); 83 ASSERT_NE(0, heap_query(heaps[i],
|
/dalvik/vm/alloc/ |
HeapSource.cpp | 148 /* The heaps; heaps[0] is always the active heap, 151 Heap heaps[HEAP_SOURCE_MAX_HEAP_COUNT]; member in struct:HeapSource 153 /* The current number of heaps. 200 #define hs2heap(hs_) (&((hs_)->heaps[0])) 230 * Returns the current footprint of all heaps. If includeActive 245 footprint += mspace_footprint(hs->heaps[i].msp); 260 const Heap *const heap = &hs->heaps[i]; 336 if (gHs->heaps[i].msp == mspace) { 337 heap = &gHs->heaps[i] [all...] |
/external/kernel-headers/original/linux/ |
ion.h | 24 * enum ion_heap_types - list of all possible types of heaps 30 * @ION_NUM_HEAPS: helper for iterating over heaps, a bit mask 31 * is used to identify the heaps, so only 32 38 ION_HEAP_TYPE_CUSTOM, /* must be last so device specific heaps always 49 * bits are reserved for use by the heaps themselves. 92 * struct ion_platform_data - array of platform heaps passed from board file 94 * @heaps: array of platform_heap structions 100 struct ion_platform_heap heaps[]; member in struct:ion_platform_data 104 * ion_reserve() - reserve memory for ion heaps if applicable 108 * Calls memblock reserve to set aside memory for heaps that ar [all...] |
/external/chromium/base/ |
process_util_win.cc | 832 // Gives us some extra space in the array in case a thread is creating heaps 835 scoped_array<HANDLE> heaps(new HANDLE[number_heaps + MARGIN]); 836 number_heaps = GetProcessHeaps(number_heaps + MARGIN, heaps.get()); 842 // Don't bother with the result code. It may fails on heaps that have the 844 heap_set(heaps[i],
|
process_util_unittest.cc | 280 HANDLE heaps[1024] = { 0 }; local 281 unsigned number_heaps = GetProcessHeaps(1024, heaps); 286 ASSERT_NE(0, HeapQueryInformation(heaps[i],
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
ion.h | 26 * enum ion_heap_types - list of all possible types of heaps 37 * @ION_NUM_HEAPS: helper for iterating over heaps, a bit mask 38 * is used to identify the heaps, so only 32 46 ION_HEAP_TYPE_CUSTOM, /* must be last so device specific heaps always 58 * bits are reserved for use by the heaps themselves. 107 * struct ion_platform_data - array of platform heaps passed from board file 115 * @heaps: array of platform_heap structions 125 struct ion_platform_heap *heaps; member in struct:ion_platform_data 131 * ion_reserve() - reserve memory for ion heaps if applicable 135 * Calls memblock reserve to set aside memory for heaps that ar [all...] |