Home
last modified time | relevance | path

Searched refs:GetSuspendCount (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dthread.cc1696 if (UNLIKELY(wait_state != ThreadState::kRunnable && self->GetSuspendCount() != 0)) { in RequestSynchronousCheckpoint()
1702 for (int iter_count = 1; self->GetSuspendCount() != 0; ++iter_count) { in RequestSynchronousCheckpoint()
1722 DCHECK_GT(GetSuspendCount(), 0); in RequestSynchronousCheckpoint()
1724 DCHECK_EQ(self->GetSuspendCount(), 0); in RequestSynchronousCheckpoint()
1768 DCHECK_GT(GetSuspendCount(), 0); in RequestSynchronousCheckpoint()
4727 CHECK(this == Thread::Current() || GetSuspendCount() >= 1) in SetAsyncException()
4729 << this << " count: " << GetSuspendCount(); in SetAsyncException()
Dthread-inl.h407 DCHECK_EQ(GetSuspendCount(), 0); in TransitionFromSuspendedToRunnable()
Dthread_list.cc1074 if (LIKELY(self->GetSuspendCount() == 0)) { in SuspendThread()
1088 DCHECK_GT(thread->GetSuspendCount(), 0); in SuspendThread()
Dthread.h356 int GetSuspendCount() const REQUIRES(Locks::thread_suspend_count_lock_) { in GetSuspendCount() function