Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_cache.cc24 DCHECK(owning_thread == Thread::Current() || owning_thread->IsSuspended()); in Clear()
/art/runtime/
Dthread_list.cc283 CHECK(thread->IsSuspended()) in AssertThreadsAreSuspended()
368 if (!thread->IsSuspended()) { in RunCheckpoint()
378 } while (!thread->IsSuspended()); in RunCheckpoint()
722 if (thread->IsSuspended()) { in SuspendAllInternal()
756 if (!thread->IsSuspended()) { in SuspendAllInternal()
844 if (UNLIKELY(!thread->IsSuspended())) { in Resume()
962 if (thread->IsSuspended()) { in SuspendThreadByPeer()
1073 if (thread->IsSuspended()) { in SuspendThreadByThreadId()
1464 if (!self->IsSuspended()) { in Unregister()
1513 if (thread == self || thread->IsSuspended()) { in VisitRootsForSuspendedThreads()
Dthread-inl.h344 DCHECK(this == self || IsSuspended() || GetState() == kWaitingPerformingGc) in RevokeThreadLocalAllocationStack()
Dmonitor.cc111 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor()
137 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor()
155 CHECK(owner_ == nullptr || owner_ == self || owner_->IsSuspended()); in Install()
Dstack.cc74 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; in StackVisitor()
751 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); in WalkStack()
Dthread.cc657 if (result != nullptr && !result->IsSuspended()) { in FromManagedThread()
1407 if (this != self && !IsSuspended()) { in ModifySuspendCountInternal()
2168 bool safe_to_dump = (this == Thread::Current() || IsSuspended()); in DumpStack()
Dthread.h257 bool IsSuspended() const { in IsSuspended() function
Ddebugger.cc413 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; in IsSuspendedForDebugger()
/art/runtime/gc/collector/
Dconcurrent_copying.cc250 DCHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
445 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
960 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
1654 DCHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
Dmark_sweep.cc1166 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
/art/runtime/jit/
Djit_code_cache.cc1408 DCHECK(thread == Thread::Current() || thread->IsSuspended()); in Run()