Searched refs:heap (Results 1 - 6 of 6) 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/tools/
H A Dget-hprof24 FILE_BASE=`adb shell ls -l '/data/misc/heap-dump*.hprof' | tail -1 | \
33 OUT_FILE=heap-dump.hprof
/dalvik/vm/alloc/
H A DHeapSource.c90 - that may not work so great for a gc heap, because small will always consume.
94 Find a way to permanently steal pages from the middle of the heap
97 Allocate String and char[] in a separate heap?
99 Maybe avoid growing small heap, even if there's slack? Look at
100 live ratio of small heap after a gc; scale it based on that.
112 /* The largest size that this heap is allowed to grow to.
132 * The lowest address of this heap, inclusive.
137 * The highest address of this heap, exclusive.
143 /* Target ideal heap utilization ratio; range 1..HEAP_UTILIZATION_MAX
147 /* Requested minimum heap siz
286 const Heap *const heap = &hs->heaps[i]; local
304 countAllocation(Heap *heap, const void *ptr, bool isObj) argument
321 countFree(Heap *heap, const void *ptr, size_t *numBytes) argument
379 Heap heap; local
674 Heap *const heap = &hs->heaps[i]; local
817 Heap *heap; local
860 heapAllocAndGrow(HeapSource *hs, Heap *heap, size_t n) argument
895 Heap *heap; local
950 Heap *heap; local
1063 Heap *heap; local
1089 Heap *heap; local
1361 Heap *heap; local
1480 Heap *heap = &hs->heaps[i]; local
1559 const Heap *heap; local
[all...]
/dalvik/dx/etc/
H A Ddx.bat45 REM By default, give dx a max heap size of 1 gig. This can be overridden

Completed in 750 milliseconds