HomeSort by relevance Sort by last modified time
    Searched refs:IsSuspended (Results 1 - 10 of 10) sorted by null

  /art/runtime/
thread_list.cc 249 CHECK(thread->IsSuspended())
322 if (!thread->IsSuspended()) {
332 } while (!thread->IsSuspended());
585 if (thread->IsSuspended()) {
690 // To check IsSuspended.
692 DCHECK(thread->IsSuspended());
785 // IsSuspended on the current thread will fail as the current thread is changed into
793 if (thread->IsSuspended()) {
    [all...]
thread-inl.h 275 DCHECK(this == self || IsSuspended() || GetState() == kWaitingPerformingGc)
monitor.cc 94 CHECK(owner == nullptr || owner == self || owner->IsSuspended());
116 CHECK(owner == nullptr || owner == self || owner->IsSuspended());
132 CHECK(owner_ == nullptr || owner_ == self || owner_->IsSuspended());
    [all...]
stack.cc 111 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
773 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
    [all...]
thread.h 222 bool IsSuspended() const {
    [all...]
thread.cc 471 if (result != nullptr && !result->IsSuspended()) {
    [all...]
debugger.cc 347 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
    [all...]
  /art/runtime/gc/collector/
concurrent_copying.cc 200 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc)
343 CHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc)
499 DCHECK(thread == self || thread->IsSuspended() || thread->GetState() == kWaitingPerformingGc)
    [all...]
mark_sweep.cc     [all...]
  /art/runtime/jit/
jit_code_cache.cc 472 DCHECK(thread == Thread::Current() || thread->IsSuspended());
    [all...]

Completed in 361 milliseconds