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++;
345 if (gDvm.allocProf.enabled) {
347 gDvm.allocProf.allocCount++;
348 gDvm.allocProf.allocSize += size;
350 self->allocProf.allocCount++;
351 self->allocProf.allocSize += size;
358 if (gDvm.allocProf.enabled) {
360 gDvm.allocProf
[all...]
H A DMarkSweep.cpp940 if (gDvm.allocProf.enabled) {
941 gDvm.allocProf.freeCount += ctx.numObjects;
942 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.h680 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.cpp4401 if (gDvm.allocProf.enabled) {
4502 if (gDvm.allocProf.enabled && startWhen != 0) {
4504 gDvm.allocProf.classInitTime += initDuration;
4505 self->allocProf.classInitTime += initDuration;
4506 gDvm.allocProf.classInitCount++;
4507 self->allocProf.classInitCount++;

Completed in 182 milliseconds