Home
last modified time | relevance | path

Searched refs:IsSuspended (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dthread_list.cc155 CHECK(thread->IsSuspended()) in AssertThreadsAreSuspended()
239 if (!thread->IsSuspended()) { in RunCheckpoint()
245 } while (!thread->IsSuspended()); in RunCheckpoint()
423 DCHECK(thread->IsSuspended()); in Resume()
505 if (thread->IsSuspended()) { in SuspendThreadByPeer()
582 if (thread->IsSuspended()) { in SuspendThreadByThreadId()
607 CHECK(thread == self || thread->IsSuspended()); in FindThreadByThreadId()
853 if (!self->IsSuspended()) { in Unregister()
Dstack.cc95 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; in StackVisitor()
102 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; in StackVisitor()
515 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); in WalkStack()
Dthread-inl.h207 DCHECK(this == self || IsSuspended() || GetState() == kWaitingPerformingGc) in RevokeThreadLocalAllocationStack()
Dmonitor.cc101 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor()
123 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor()
139 CHECK(owner_ == nullptr || owner_ == self || owner_->IsSuspended()); in Install()
Dthread.cc192 if (result != nullptr && !result->IsSuspended()) { in FromManagedThread()
636 if (this != self && !IsSuspended()) { in ModifySuspendCount()
992 bool safe_to_dump = (this == Thread::Current() || IsSuspended()); in DumpStack()
Dthread.h197 bool IsSuspended() const { in IsSuspended() function
Ddebugger.cc399 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; in IsSuspendedForDebugger()
/art/runtime/gc/collector/
Dmark_sweep.cc969 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()