Home | History | Annotate | Download | only in vm

Lines Matching refs:stackDepth

988     int stackDepth;
1024 stackDepth = 0;
1029 stackDepth++;
1034 //LOGD("EXCEP: stack depth is %d\n", stackDepth);
1036 if (!stackDepth)
1045 stackData = dvmAllocPrimitiveArray('I', stackDepth*2, ALLOC_DEFAULT);
1054 simpleData = (int*) malloc(sizeof(int) * stackDepth*2);
1062 *pCount = stackDepth;
1083 stackDepth--; // for verification
1089 assert(stackDepth == 0);
1127 ArrayObject* dvmGetStackTraceRaw(const int* intVals, int stackDepth)
1139 stackDepth, kObjectArrayRefWidth, ALLOC_DEFAULT);
1148 for (i = 0; i < stackDepth; i++) {
1210 void dvmLogRawStackTrace(const int* intVals, int stackDepth)
1217 for (i = 0; i < stackDepth; i++) {