Searched defs:stackDepth (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/native/
H A Ddalvik_system_VMStack.cpp184 size_t stackDepth; local
185 int* traceBuf = getTraceBuf(targetThreadObj, &stackDepth);
193 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth);
209 size_t stackDepth; local
210 int* traceBuf = getTraceBuf(targetThreadObj, &stackDepth);
218 if (stackDepth > steArray->length) {
219 stackDepth = steArray->length;
221 dvmFillStackTraceElements(traceBuf, stackDepth, steArray);
223 RETURN_INT(stackDepth);
/dalvik/vm/
H A DDdm.cpp449 size_t stackDepth; local
452 traceBuf = dvmFillInStackTraceRaw(thread, &stackDepth);
460 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth);
H A DAllocTracker.cpp170 int stackDepth = 0; local
175 while ((fp != NULL) && (stackDepth < kMaxAllocRecordStackDepth)) {
180 pRec->stackElem[stackDepth].method = method;
182 pRec->stackElem[stackDepth].pc = 0;
187 pRec->stackElem[stackDepth].pc =
190 stackDepth++;
198 while (stackDepth < kMaxAllocRecordStackDepth) {
199 pRec->stackElem[stackDepth].method = NULL;
200 pRec->stackElem[stackDepth].pc = 0;
201 stackDepth
[all...]
H A DProfile.cpp184 size_t stackDepth = 0; local
189 stackDepth++;
194 *pCount = stackDepth;
201 stackDepth);
214 stackDepth--;
219 assert(stackDepth == 0);
H A DException.cpp829 size_t stackDepth; local
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
965 dvmGetStackTraceRaw(const int* intVals, size_t stackDepth) argument
983 dvmFillStackTraceElements(const int* intVals, size_t stackDepth, ArrayObject* steArray) argument
1044 dvmLogRawStackTrace(const int* intVals, int stackDepth) argument
[all...]

Completed in 91 milliseconds