HomeSort by relevance Sort by last modified time
    Searched refs:stackDepth (Results 1 - 25 of 26) sorted by null

1 2

  /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 170 int stackDepth = 0;
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...]
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 //ALOGD("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);
Profile.cpp 184 size_t stackDepth = 0;
189 stackDepth++;
194 *pCount = stackDepth;
201 stackDepth);
214 stackDepth--;
219 assert(stackDepth == 0);
    [all...]
  /bionic/libc/bionic/
pthread_debug.cpp 220 int stackDepth;
250 object->stackDepth = 0;
363 int stackDepth;
375 stackDepth = get_backtrace(addrs, STACK_TRACE_DEPTH);
376 log_backtrace(addrs, stackDepth);
387 log_backtrace(parent->stackTrace, parent->stackDepth);
412 log_backtrace(obj->stackTrace, obj->stackDepth);
440 object->stackDepth = get_backtrace(object->stackTrace, STACK_TRACE_DEPTH);
470 object->stackDepth, object->stackTrace);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLElementStack.h 78 unsigned stackDepth() const { return m_stackDepth; }
HTMLConstructionSite.h 140 bool isEmpty() const { return !m_openElements.stackDepth(); }
HTMLConstructionSite.cpp 194 if (m_openElements.stackDepth() > maximumHTMLParserDOMTreeDepth && task.parent->parentNode())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
SerializedScriptValue.cpp     [all...]
  /dalvik/hit/src/com/android/hit/
HprofParser.java 576 int stackDepth = mInput.readInt();
579 stackDepth);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModuleSource.js     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
jdimodel.jar 
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/misc/common/ddmlib/
ddmlib-prebuilt.jar 
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 

Completed in 1452 milliseconds

1 2