Home
last modified time | relevance | path

Searched refs:kSuspendRequest (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dthread-inl.h94 if (UNLIKELY((old_state_and_flags.as_struct.flags & kSuspendRequest) != 0)) { in TransitionFromSuspendedToRunnable()
99 while ((old_state_and_flags.as_struct.flags & kSuspendRequest) != 0) { in TransitionFromSuspendedToRunnable()
112 if (LIKELY((old_state_and_flags.as_struct.flags & kSuspendRequest) == 0)) { in TransitionFromSuspendedToRunnable()
Dthread.h85 kSuspendRequest = 1, // If set implies that suspend_count_ > 0 and the Thread should enter the enumerator
162 (state_and_flags.as_struct.flags & kSuspendRequest) != 0; in IsSuspended()
Dthread_list.cc515 self->AtomicSetFlag(kSuspendRequest); in Register()
Dthread.cc560 AtomicClearFlag(kSuspendRequest); in ModifySuspendCount()
562 AtomicSetFlag(kSuspendRequest); in ModifySuspendCount()
/art/runtime/entrypoints/
Dentrypoint_utils.h328 } else if (thread->ReadFlag(kSuspendRequest)) { in CheckSuspend()