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

/dalvik/vm/native/
H A Ddalvik_system_VMDebug.cpp108 static void clearAllocProfStateFields(AllocProfState *allocProf, argument
112 allocProf->allocCount = 0;
115 allocProf->allocSize = 0;
118 allocProf->freeCount = 0;
121 allocProf->freeSize = 0;
124 allocProf->gcCount = 0;
127 allocProf->classInitCount = 0;
130 allocProf->classInitTime = 0;
148 clearAllocProfStateFields(&gDvm.allocProf, KIND_ALL_COUNTS);
149 clearAllocProfStateFields(&dvmThreadSelf()->allocProf, KIND_ALL_COUNT
172 AllocProfState *allocProf; local
[all...]
/dalvik/vm/alloc/
H A DHeap.cpp169 if (gDvm.allocProf.enabled) {
171 gDvm.allocProf.gcCount++;
173 self->allocProf.gcCount++;
351 if (gDvm.allocProf.enabled) {
353 gDvm.allocProf.allocCount++;
354 gDvm.allocProf.allocSize += size;
356 self->allocProf.allocCount++;
357 self->allocProf.allocSize += size;
364 if (gDvm.allocProf.enabled) {
366 gDvm.allocProf
[all...]
H A DMarkSweep.cpp941 if (gDvm.allocProf.enabled) {
942 gDvm.allocProf.freeCount += ctx.numObjects;
943 gDvm.allocProf.freeSize += ctx.numBytes;
/dalvik/vm/
H A DProfile.cpp846 gDvm.allocProf.allocCount);
848 gDvm.allocProf.allocSize);
850 gDvm.allocProf.gcCount);
1192 gDvm.allocProf.enabled = true;
1200 gDvm.allocProf.enabled = false;
H A DThread.h295 AllocProfState allocProf; member in struct:Thread
H A DGlobals.h683 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.cpp4406 if (gDvm.allocProf.enabled) {
4507 if (gDvm.allocProf.enabled && startWhen != 0) {
4509 gDvm.allocProf.classInitTime += initDuration;
4510 self->allocProf.classInitTime += initDuration;
4511 gDvm.allocProf.classInitCount++;
4512 self->allocProf.classInitCount++;

Completed in 132 milliseconds