/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...] |
/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...] |
/external/chromium/base/ |
process_util_unittest.cc | 280 HANDLE heaps[1024] = { 0 }; local 281 unsigned number_heaps = GetProcessHeaps(1024, heaps); 286 ASSERT_NE(0, HeapQueryInformation(heaps[i],
|
/dalvik/vm/alloc/ |
HeapSource.cpp | 146 /* The heaps; heaps[0] is always the active heap, 149 Heap heaps[HEAP_SOURCE_MAX_HEAP_COUNT]; member in struct:HeapSource 151 /* The current number of heaps. 190 #define hs2heap(hs_) (&((hs_)->heaps[0])) 220 * Returns the current footprint of all heaps. If includeActive 235 footprint += mspace_footprint(hs->heaps[i].msp); 250 const Heap *const heap = &hs->heaps[i]; 326 if (gHs->heaps[i].msp == mspace) { 327 heap = &gHs->heaps[i] [all...] |