HomeSort by relevance Sort by last modified time
    Searched defs:allocations (Results 1 - 6 of 6) sorted by null

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapDiffSnapshot.java 33 // The diff snapshots behaves like a snapshot that only contains the new allocations
47 Set<NativeAllocationInfo> allocations = local
49 allocations.removeAll(oldSnapshot.getAllocations());
50 return new ArrayList<NativeAllocationInfo>(allocations);
NativeHeapDataImporter.java 52 List<NativeAllocationInfo> allocations = new ArrayList<NativeAllocationInfo>(); local
62 // each block of allocations end with an empty line
74 allocations.add(getNativeAllocation(allocationBlock));
95 mSnapshot = new NativeHeapSnapshot(allocations);
102 * Allocations: 1
127 int allocations = sc.nextInt(); local
144 if (totalSize != size * allocations) {
146 genericErrorMessage("Total Size does not match size * # of allocations"));
149 NativeAllocationInfo info = new NativeAllocationInfo(size, allocations);
NativeHeapPanel.java 100 private static final String TOOLTIP_ZYGOTE_ALLOCATIONS = "Show Zygote Allocations";
101 private static final String TOOLTIP_DIFFS_ONLY = "Only show new allocations not present in previous snapshot";
102 private static final String TOOLTIP_GROUPBY = "Group allocations by library.";
178 List<NativeAllocationInfo> allocations = client.getClientData().getNativeAllocationList(); local
179 if (allocations.size() == 0) {
185 final List<NativeAllocationInfo> nativeAllocations = shallowCloneList(allocations);
311 private List<NativeAllocationInfo> shallowCloneList(List<NativeAllocationInfo> allocations) {
313 new ArrayList<NativeAllocationInfo>(allocations.size());
315 for (NativeAllocationInfo i : allocations) {
354 List<NativeAllocationInfo> allocations = c.getClientData().getNativeAllocationList() local
    [all...]
  /bionic/libc/bionic/
malloc_debug_common.h 60 size_t allocations; member in struct:HashEntry
  /external/mesa3d/src/talloc/
hieralloc.c 33 static std::set<void *> allocations; member in class:std
166 assert(allocations.find(ptr + 1) == allocations.end());
167 allocations.insert(ptr + 1);
178 assert(allocations.find(ptr) != allocations.end());
216 allocations.erase(ptr);
217 assert(allocations.find(header + 1) == allocations.end());
218 allocations.insert(header + 1)
    [all...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 417 * size_t allocations
421 * array of function pointers, and "allocations" is the number of
422 * allocations with the exact same size and backtrace.
424 * The entries are sorted by descending total size (i.e. size*allocations)
466 size_t allocations = *(size_t*) (ptr + sizeof(size_t)); local
472 allocations);

Completed in 101 milliseconds