Searched defs:depth (Results 1 - 15 of 15) sorted by relevance

/dalvik/dx/src/com/android/dx/merge/
H A DSortableType.java39 if (a.depth != b.depth) {
40 return a.depth - b.depth;
48 private int depth = -1; field in class:SortableType
68 * Assigns this type's depth if the depths of its supertype and implemented
69 * interfaces are known. Returns false if the depth couldn't be computed
80 } else if (sortableSupertype.depth == -1) {
83 max = sortableSupertype.depth;
91 } else if (implemented.depth
[all...]
/dalvik/tests/067-preemptive-unpark/src/
H A DMain.java64 private static void clearStack(int depth) { argument
76 if (depth > 0) {
77 clearStack(depth - 1);
/dalvik/vm/jdwp/
H A DJdwpConstants.cpp200 const char* dvmJdwpStepDepthStr(JdwpStepDepth depth) argument
202 switch (depth) {
H A DJdwpEvent.h73 int depth; /* JdwpStepDepth */ member in struct:JdwpEventMod::__anon78
H A DJdwpEvent.cpp207 JdwpStepDepth depth = static_cast<JdwpStepDepth>(pMod->step.depth); local
208 dvmDbgConfigureStep(pMod->step.threadId, size, depth);
/dalvik/vm/native/
H A Ddalvik_system_VMStack.cpp77 size_t depth = dvmComputeExactFrameDepth(fp); local
78 UniquePtr<const Method*[]> methods(new const Method*[depth]);
79 dvmFillStackTraceArray(fp, methods.get(), depth);
84 for (size_t i = kSkip; i < depth && size < maxSize; ++i) {
115 for (size_t i = kSkip; i < depth; ++i) {
131 * thread is not still alive. *depth is set to the length of a
/dalvik/hit/src/com/android/hit/
H A DState.java87 int depth) {
88 return mCurrentHeap.getStackTraceAtDepth(traceSerialNumber, depth);
86 getStackTraceAtDepth(int traceSerialNumber, int depth) argument
H A DHeap.java68 int depth) {
72 trace = trace.fromDepth(depth);
67 getStackTraceAtDepth(int traceSerialNumber, int depth) argument
/dalvik/tests/074-gc-thrash/src/
H A DMain.java253 private String dive(int depth, int iteration) { argument
293 strong[depth] = funStr;
294 weak[depth] = new WeakReference(funStr);
296 if (depth+1 < MAX_DEPTH)
297 dive(depth+1, iteration+1);
/dalvik/vm/
H A DDebugger.h66 JdwpStepDepth depth; member in struct:StepControl
282 JdwpStepDepth depth);
H A DAllocTracker.cpp40 * how many allocations it wants to see and what the stack depth should be.
41 * Changing the window size is easy, changing the max stack depth is harder
241 (1b) stack depth
395 /* compute depth */
396 int depth; local
397 for (depth = 0; depth < kMaxAllocRecordStackDepth; depth++) {
398 if (pRec->stackElem[depth].method == NULL)
408 set1(&ptr[8], depth);
[all...]
H A DDebugger.cpp2561 JdwpStepDepth depth)
2589 if (!dvmAddSingleStep(thread, size, depth))
2560 dvmDbgConfigureStep(ObjectId threadId, JdwpStepSize size, JdwpStepDepth depth) argument
/dalvik/vm/interp/
H A DInterp.cpp503 bool dvmAddSingleStep(Thread* thread, int size, int depth) argument
523 pCtrl->depth = static_cast<JdwpStepDepth>(depth);
529 * the current line, current method, and current stack depth. We need
595 ALOGV("##### step init: thread=%p meth=%p '%s' line=%d frameDepth=%d depth=%s size=%s",
598 dvmJdwpStepDepthStr(pCtrl->depth),
773 if (pCtrl->depth == SD_INTO) {
790 } else if (pCtrl->depth == SD_OVER) {
793 * different and the frame depth is <= the original frame
794 * depth
[all...]
/dalvik/tools/dmtracedump/
H A DTraceDump.c232 int depth[MAX_THREADS]; member in struct:TraceData
1187 traceData.depth[i] = 2; // adjust for return from start function
1224 traceData.depth[threadId]++;
1232 printDepth = traceData.depth[threadId];
1264 traceData.depth[threadId]--; /* METHOD_TRACE_EXIT or METHOD_TRACE_UNROLL */
/dalvik/vm/analysis/
H A DCodeVerify.cpp2288 * Compute the "class depth" of a class. This is the distance from the
2290 * has a class depth of 0.
2294 int depth = 0; local
2298 depth++;
2300 return depth;
2307 * TODO: consider caching the class depth in the class object so we don't
2437 * depth" of each, move up toward the root of the deepest one until they're
2438 * at the same depth, then walk both up to the root until they match.
2440 * If both classes are arrays, we need to merge based on array depth and
2623 "VFY: mismatched stack depth
[all...]

Completed in 3789 milliseconds