Home | History | Annotate | Download | only in vm

Lines Matching refs:stackDepth

829     size_t stackDepth;
865 stackDepth = 0;
870 stackDepth++;
875 //ALOGD("EXCEP: stack depth is %d", stackDepth);
877 if (!stackDepth)
886 stackData = dvmAllocPrimitiveArray('I', stackDepth*2, ALLOC_DEFAULT);
895 simpleData = (int*) malloc(sizeof(int) * stackDepth*2);
903 *pCount = stackDepth;
924 stackDepth--; // for verification
930 assert(stackDepth == 0);
965 ArrayObject* dvmGetStackTraceRaw(const int* intVals, size_t stackDepth)
969 ArrayObject* array = dvmAllocArrayByClass(klass, stackDepth, ALLOC_DEFAULT);
971 dvmFillStackTraceElements(intVals, stackDepth, array);
983 void dvmFillStackTraceElements(const int* intVals, size_t stackDepth, ArrayObject* steArray)
995 for (i = 0; i < stackDepth; i++) {
1044 void dvmLogRawStackTrace(const int* intVals, int stackDepth) {
1048 for (int i = 0; i < stackDepth; i++) {