Searched refs:heap (Results 1 - 5 of 5) sorted by relevance

/dalvik/hit/src/com/android/hit/
H A DState.java26 * During parsing of the HPROF file HEAP_DUMP_INFO chunks change which heap
43 Heap heap = mHeaps.get(id);
45 if (heap == null) {
46 heap = new Heap(name);
47 heap.mState = this;
48 mHeaps.put(id, heap);
51 mCurrentHeap = heap;
61 for (Heap heap: mHeaps.values()) {
62 if (heap.mName.equals(name)) {
63 return heap;
[all...]
H A DInstance.java32 // The heap in which this object was allocated (app, zygote, etc)
47 * called on all heap objects so that they can resolve their internal
52 * for in a heap other than the one this Instance is in.
89 public void setHeap(Heap heap) { argument
90 mHeap = heap;
H A DQueries.java78 for (Heap heap: state.mHeaps.values()) {
79 classes.addAll(heap.mClassesById.values());
202 for (Heap heap: state.mHeaps.values()) {
203 result.addAll(heap.mRoots);
223 * If this instance wasn't in the old heap, or was there,
/dalvik/vm/alloc/
H A DHeapSource.c83 - that may not work so great for a gc heap, because small will always consume.
87 Find a way to permanently steal pages from the middle of the heap
90 Allocate String and char[] in a separate heap?
92 Maybe avoid growing small heap, even if there's slack? Look at
93 live ratio of small heap after a gc; scale it based on that.
105 /* The bitmap that keeps track of where objects are in the heap.
109 /* The largest size that this heap is allowed to grow to.
125 /* Target ideal heap utilization ratio; range 1..HEAP_UTILIZATION_MAX
129 /* Requested minimum heap size, or zero if there is no minimum.
133 /* The starting heap siz
225 const Heap *const heap = &hs->heaps[i]; local
244 countAllocation(Heap *heap, const void *ptr, bool isObj) argument
259 countFree(Heap *heap, const void *ptr, bool isObj) argument
324 Heap heap; local
397 Heap *heap; local
528 Heap *heap = &hs->heaps[i]; local
568 Heap *const heap = &hs->heaps[i]; local
639 Heap *heap = &hs->heaps[i]; local
656 Heap *heap; local
685 heapAllocAndGrow(HeapSource *hs, Heap *heap, size_t n) argument
720 Heap *heap; local
773 Heap *heap; local
795 Heap *heap; local
824 Heap *heap; local
850 Heap *heap; local
1126 Heap *heap; local
1237 Heap *heap = &hs->heaps[i]; local
1314 const Heap *heap; local
1353 Heap *heap; local
[all...]
/dalvik/tools/
H A Dget-hprof24 FILE_BASE=`adb shell ls -l '/data/misc/heap-dump*.hprof' | tail -1 | \
33 OUT_FILE=heap-dump.hprof

Completed in 1908 milliseconds