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.cc272 CHECK(thread->IsSuspended()) in AssertThreadsAreSuspended()
350 if (thread->IsSuspended()) { in RunCheckpoint()
357 DCHECK(thread->IsSuspended()); in RunCheckpoint()
379 DCHECK(thread->IsSuspended()); in RunCheckpoint()
708 if (thread->IsSuspended()) { in SuspendAllInternal()
742 if (!thread->IsSuspended()) { in SuspendAllInternal()
830 if (UNLIKELY(!thread->IsSuspended())) { in Resume()
948 if (thread->IsSuspended()) { in SuspendThreadByPeer()
1059 if (thread->IsSuspended()) { in SuspendThreadByThreadId()
1327 if (!self->IsSuspended()) { in Unregister()
[all …]
Dthread-inl.h347 DCHECK(this == self || IsSuspended() || GetState() == kWaitingPerformingGc) in RevokeThreadLocalAllocationStack()
Dmonitor.cc118 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor()
151 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor()
173 DCHECK(owner == Thread::Current() || owner->IsSuspended()); in SetLockingMethod()
232 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Install()
Dstack.cc80 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread; in StackVisitor()
806 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended()); in WalkStack()
Dthread.h255 bool IsSuspended() const { in IsSuspended() function
Dthread.cc670 if (result != nullptr && !result->IsSuspended()) { in FromManagedThread()
1428 if (this != self && !IsSuspended()) { in ModifySuspendCountInternal()
2180 bool safe_to_dump = (this == Thread::Current() || IsSuspended()); in DumpStack()
/art/runtime/gc/collector/
Dconcurrent_copying.cc269 DCHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
465 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
982 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc) in Run()
1715 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.cc1018 DCHECK(thread == Thread::Current() || thread->IsSuspended()); in Run()