/external/javassist/src/main/javassist/bytecode/ |
CodeAnalyzer.java | 76 int stackDepth = -stack[index]; 81 stack[index] = stackDepth; 83 stackDepth = visitInst(op, ci, index, stackDepth); 84 if (stackDepth < 1) 87 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth)) 94 --stackDepth; 99 int codeLength, int[] stack, int stackDepth, int[] jsrDepth) 105 checkTarget(index, target, codeLength, stack, stackDepth); 112 checkTarget(index, target, codeLength, stack, stackDepth); [all...] |
Bytecode.java | 123 private int stackDepth; 143 stackDepth = 0; 424 setStackDepth(stackDepth + diff); 430 public int getStackDepth() { return stackDepth; } 440 stackDepth = depth; 441 if (stackDepth > maxStack) 442 maxStack = stackDepth; [all...] |
/dalvik/vm/native/ |
dalvik_system_VMStack.cpp | 184 size_t stackDepth; 185 int* traceBuf = getTraceBuf(targetThreadObj, &stackDepth); 193 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth); 209 size_t stackDepth; 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/ |
AllocTracker.cpp | 149 int stackDepth = 0; 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...] |
Exception.h | 197 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);
|
Exception.cpp | 829 size_t stackDepth; 865 stackDepth = 0; 870 stackDepth++; 875 //LOGD("EXCEP: stack depth is %d", stackDepth); 877 if (!stackDepth) 886 stackData = dvmAllocPrimitiveArray('I', stackDepth*2, ALLOC_DEFAULT); [all...] |
Ddm.cpp | 449 size_t stackDepth; 452 traceBuf = dvmFillInStackTraceRaw(thread, &stackDepth); 460 ArrayObject* trace = dvmGetStackTraceRaw(traceBuf, stackDepth);
|
/external/webkit/Source/JavaScriptCore/parser/ |
SyntaxChecker.h | 232 void appendUnaryToken(int& stackDepth, int tok, int) { stackDepth = 1; m_topUnaryToken = tok; } 235 void unaryTokenStackRemoveLast(int& stackDepth) { stackDepth = 0; }
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
HandleThread.java | 220 int i, threadId, stackDepth; 230 stackDepth = data.getInt(); 231 trace = new StackTraceElement[stackDepth]; 232 for (i = 0; i < stackDepth; i++) {
|
HandleHeap.java | 518 int threadId, classNameIndex, stackDepth; 523 stackDepth = (data.get() & 0xff); 528 StackTraceElement[] steArray = new StackTraceElement[stackDepth]; 533 for (int sti = 0; sti < stackDepth; sti++) {
|
/external/webkit/Source/WebCore/bindings/v8/ |
SerializedScriptValue.cpp | 1056 if (stackDepth() != 1) 1063 if (length > stackDepth()) 1068 const int depth = stackDepth() - length; 1096 if (length > stackDepth()) 1098 for (unsigned i = stackDepth() - length; i < stackDepth(); i += 2) { [all...] |
/dalvik/hit/src/com/android/hit/ |
HprofParser.java | 576 int stackDepth = mInput.readInt(); 579 stackDepth);
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
BytecodeGenerator.cpp | [all...] |
/prebuilt/common/ecj/ |
ecj.jar | |