Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_cache.cc24 DCHECK(owning_thread == Thread::Current() || owning_thread->IsSuspended()); in Clear()
/art/runtime/
Dthread_list.cc281 CHECK(thread->IsSuspended()) in AssertThreadsAreSuspended()
359 if (thread->IsSuspended()) { in RunCheckpoint()
366 DCHECK(thread->IsSuspended()); in RunCheckpoint()
388 DCHECK(thread->IsSuspended()); in RunCheckpoint()
717 if (thread->IsSuspended()) { in SuspendAllInternal()
751 if (!thread->IsSuspended()) { in SuspendAllInternal()
839 if (UNLIKELY(!thread->IsSuspended())) { in Resume()
957 if (thread->IsSuspended()) { in SuspendThreadByPeer()
1068 if (thread->IsSuspended()) { in SuspendThreadByThreadId()
1327 if (!self->IsSuspended()) { in Unregister()
[all …]
Dthread-inl.h346 DCHECK(this == self || IsSuspended() || GetState() == kWaitingPerformingGc) in RevokeThreadLocalAllocationStack()
Dmonitor.cc114 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor()
142 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor()
159 DCHECK(owner == Thread::Current() || owner->IsSuspended()); in SetLockingMethod()
218 CHECK(owner == nullptr || owner == self || (ART_USE_FUTEXES && owner->IsSuspended())); in Install()
Dstack.cc80 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; in StackVisitor()
832 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); in WalkStack()
Dthread.cc666 if (result != nullptr && !result->IsSuspended()) { in FromManagedThread()
1418 if (this != self && !IsSuspended()) { in ModifySuspendCountInternal()
2170 bool safe_to_dump = (this == Thread::Current() || IsSuspended()); in DumpStack()
Dthread.h254 bool IsSuspended() const { in IsSuspended() function
/art/runtime/gc/collector/
Dconcurrent_copying.cc248 DCHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
443 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
960 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
1665 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.cc1051 DCHECK(thread == Thread::Current() || thread->IsSuspended()); in Run()