Searched refs:allocProf (Results 1 - 8 of 8) sorted by relevance

/dalvik/vm/native/
H A Ddalvik_system_VMDebug.cpp106 static void clearAllocProfStateFields(AllocProfState *allocProf, argument
110 allocProf->allocCount = 0;
113 allocProf->allocSize = 0;
116 allocProf->freeCount = 0;
119 allocProf->freeSize = 0;
122 allocProf->gcCount = 0;
125 allocProf->classInitCount = 0;
128 allocProf->classInitTime = 0;
146 clearAllocProfStateFields(&gDvm.allocProf, KIND_ALL_COUNTS);
147 clearAllocProfStateFields(&dvmThreadSelf()->allocProf, KIND_ALL_COUNT
170 AllocProfState *allocProf; local
[all...]
/dalvik/vm/alloc/
H A DHeap.cpp163 if (gDvm.allocProf.enabled) {
165 gDvm.allocProf.gcCount++;
167 self->allocProf.gcCount++;
361 if (gDvm.allocProf.enabled) {
363 gDvm.allocProf.allocCount++;
364 gDvm.allocProf.allocSize += size;
366 self->allocProf.allocCount++;
367 self->allocProf.allocSize += size;
374 if (gDvm.allocProf.enabled) {
376 gDvm.allocProf
[all...]
H A DMarkSweep.cpp942 if (gDvm.allocProf.enabled) {
943 gDvm.allocProf.freeCount += ctx.numObjects;
944 gDvm.allocProf.freeSize += ctx.numBytes;
/dalvik/vm/
H A DProfile.cpp680 gDvm.allocProf.allocCount);
682 gDvm.allocProf.allocSize);
684 gDvm.allocProf.gcCount);
998 gDvm.allocProf.enabled = true;
1006 gDvm.allocProf.enabled = false;
H A DThread.h291 AllocProfState allocProf; member in struct:Thread
H A DGlobals.h674 AllocProfState allocProf; member in struct:DvmGlobals
H A DDebugger.cpp492 ALOGI("GC lifetime allocation: %d bytes", gDvm.allocProf.allocCount);
/dalvik/vm/oo/
H A DClass.cpp4391 if (gDvm.allocProf.enabled) {
4492 if (gDvm.allocProf.enabled && startWhen != 0) {
4494 gDvm.allocProf.classInitTime += initDuration;
4495 self->allocProf.classInitTime += initDuration;
4496 gDvm.allocProf.classInitCount++;
4497 self->allocProf.classInitCount++;

Completed in 166 milliseconds