Home
last modified time | relevance | path

Searched refs:GetStackDepth (Results 1 – 20 of 20) sorted by relevance

/art/test/1923-frame-pop/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1914-get-local-instance/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1916-get-set-current-frame/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1935-get-set-current-frame-jit/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1915-get-set-local-current-thread/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1929-exception-catch-exception/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1913-get-set-local-objects/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1927-exception-event/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1926-missed-frame-pop/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1917-get-stack-frame/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1939-proxy-frames/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1925-self-frame-pop/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1924-frame-pop-toggle/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1928-exception-event-exception/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/test/1912-get-set-local-primitive/src/art/
DStackTrace.java46 public static native int GetStackDepth(Thread thr); in GetStackDepth() method in StackTrace
/art/runtime/mirror/
Dthrowable.h53 int32_t GetStackDepth() REQUIRES_SHARED(Locks::mutator_lock_);
Dthrowable.cc78 int32_t Throwable::GetStackDepth() { in GetStackDepth() function in art::mirror::Throwable
/art/runtime/
Ddebugger.cc2402 static int GetStackDepth(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) { in GetStackDepth() function
2435 *result = GetStackDepth(thread); in GetThreadFrameCount()
3173 int stack_depth = GetStackDepth(thread); in UpdateDebugger()
3175 if (stack_depth < single_step_control->GetStackDepth()) { in UpdateDebugger()
3179 } else if (stack_depth == single_step_control->GetStackDepth()) { in UpdateDebugger()
3198 int stack_depth = GetStackDepth(thread); in UpdateDebugger()
3199 if (stack_depth < single_step_control->GetStackDepth()) { in UpdateDebugger()
3608 ssc->GetStackDepth() > GetStackDepth(thread)) { in IsForcedInterpreterNeededForResolutionImpl()
3642 ssc->GetStackDepth() > GetStackDepth(thread)) { in IsForcedInstrumentationNeededForResolutionImpl()
3676 if (ssc->GetStackDepth() >= GetStackDepth(thread)) { in IsForcedInterpreterNeededForUpcallImpl()
[all …]
Ddebugger.h128 int GetStackDepth() const { in GetStackDepth() function
Dthread.cc2648 return count_visitor.GetDepth() == static_cast<uint32_t>(exception->GetStackDepth()); in IsExceptionThrownByCurrentMethod()