Searched refs:stackDepth (Results 1 - 6 of 6) 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 DAllocTracker.cpp149 int stackDepth = 0; local
154 while ((fp != NULL) && (stackDepth < kMaxAllocRecordStackDepth)) {
159 pRec->stackElem[stackDepth].method = method;
161 pRec->stackElem[stackDepth].pc = 0;
166 pRec->stackElem[stackDepth].pc =
169 stackDepth++;
177 while (stackDepth < kMaxAllocRecordStackDepth) {
178 pRec->stackElem[stackDepth].method = NULL;
179 pRec->stackElem[stackDepth].pc = 0;
180 stackDepth
[all...]
H A DException.h197 ArrayObject* dvmGetStackTraceRaw(const int* intVals, size_t stackDepth);
198 void dvmFillStackTraceElements(const int* intVals, size_t stackDepth, ArrayObject* steArray);
203 void dvmLogRawStackTrace(const int* intVals, int stackDepth);
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...]
H A DDdm.cpp449 size_t stackDepth; local
452 traceBuf = dvmFillInStackTraceRaw(thread, &stackDepth);
460 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth);
/dalvik/hit/src/com/android/hit/
H A DHprofParser.java576 int stackDepth = mInput.readInt();
579 stackDepth);

Completed in 153 milliseconds