Searched refs:suspend_count (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | entrypoints_order_test.cc | 66 EXPECT_OFFSET_DIFFP(Thread, tls32_, state_and_flags, suspend_count, 4); in CheckThreadOffsets() 67 EXPECT_OFFSET_DIFFP(Thread, tls32_, suspend_count, debug_suspend_count, 4); in CheckThreadOffsets()
|
D | thread.h | 212 return tls32_.suspend_count; in GetSuspendCount() 1059 suspend_count(0), debug_suspend_count(0), thin_lock_thread_id(0), tid(0), in tls_32bit_sized_values() 1072 int suspend_count GUARDED_BY(Locks::thread_suspend_count_lock_);
|
D | thread.cc | 765 DCHECK_GE(tls32_.suspend_count, tls32_.debug_suspend_count) << this; in ModifySuspendCount() 771 if (UNLIKELY(delta < 0 && tls32_.suspend_count <= 0)) { in ModifySuspendCount() 776 tls32_.suspend_count += delta; in ModifySuspendCount() 781 if (tls32_.suspend_count == 0) { in ModifySuspendCount() 959 << " sCount=" << thread->tls32_.suspend_count in DumpState()
|
D | debugger.cc | 3882 int suspend_count; in PrepareInvokeMethod() local 3885 suspend_count = targetThread->GetSuspendCount(); in PrepareInvokeMethod() 3887 if (suspend_count > 1) { in PrepareInvokeMethod() 3888 … LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count; in PrepareInvokeMethod()
|