Searched refs:stackDepth (Results 1 – 9 of 9) sorted by relevance
/dalvik/vm/ |
D | Exception.c | 900 int stackDepth; in dvmFillInStackTraceInternal() local 936 stackDepth = 0; in dvmFillInStackTraceInternal() 941 stackDepth++; in dvmFillInStackTraceInternal() 948 if (!stackDepth) in dvmFillInStackTraceInternal() 957 stackData = dvmAllocPrimitiveArray('I', stackDepth*2, ALLOC_DEFAULT); in dvmFillInStackTraceInternal() 966 simpleData = (int*) malloc(sizeof(int) * stackDepth*2); in dvmFillInStackTraceInternal() 974 *pCount = stackDepth; in dvmFillInStackTraceInternal() 995 stackDepth--; // for verification in dvmFillInStackTraceInternal() 1001 assert(stackDepth == 0); in dvmFillInStackTraceInternal() 1039 ArrayObject* dvmGetStackTraceRaw(const int* intVals, int stackDepth) in dvmGetStackTraceRaw() argument [all …]
|
D | AllocTracker.c | 145 int stackDepth = 0; in getStackFrames() local 150 while ((fp != NULL) && (stackDepth < kMaxAllocRecordStackDepth)) { in getStackFrames() 155 pRec->stackElem[stackDepth].method = method; in getStackFrames() 157 pRec->stackElem[stackDepth].pc = 0; in getStackFrames() 162 pRec->stackElem[stackDepth].pc = in getStackFrames() 165 stackDepth++; in getStackFrames() 173 while (stackDepth < kMaxAllocRecordStackDepth) { in getStackFrames() 174 pRec->stackElem[stackDepth].method = NULL; in getStackFrames() 175 pRec->stackElem[stackDepth].pc = 0; in getStackFrames() 176 stackDepth++; in getStackFrames()
|
D | Exception.h | 169 ArrayObject* dvmGetStackTraceRaw(const int* intVals, int stackDepth); 174 void dvmLogRawStackTrace(const int* intVals, int stackDepth);
|
D | Ddm.c | 561 int stackDepth = -1; in dvmDdmGetStackTraceById() local 564 traceBuf = dvmFillInStackTraceRaw(thread, &stackDepth); in dvmDdmGetStackTraceById() 572 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth); in dvmDdmGetStackTraceById()
|
D | Thread.h | 442 u4 stackDepth; member
|
D | Sync.c | 1553 dvmLogRawStackTrace(lod->rawStackTrace, lod->stackDepth); in logHeldMonitors() 1576 int stackDepth; in traverseTree() local 1582 rawStackTrace = dvmFillInStackTraceRaw(self, &stackDepth); in traverseTree() 1583 dvmLogRawStackTrace(rawStackTrace, stackDepth); in traverseTree()
|
D | Thread.c | 3199 newLod->stackDepth = depth; in dvmAddToMonitorList()
|
/dalvik/vm/native/ |
D | dalvik_system_VMStack.c | 194 int stackDepth = -1; in Dalvik_dalvik_system_VMStack_getThreadStackTrace() local 197 traceBuf = dvmFillInStackTraceRaw(thread, &stackDepth); in Dalvik_dalvik_system_VMStack_getThreadStackTrace() 205 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth); in Dalvik_dalvik_system_VMStack_getThreadStackTrace()
|
/dalvik/hit/src/com/android/hit/ |
D | HprofParser.java | 576 int stackDepth = mInput.readInt(); in loadJniMonitor() local 579 stackDepth); in loadJniMonitor()
|