Home
last modified time | relevance | path

Searched refs:old_state (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Dthread-inl.h115 int16_t old_state = old_state_and_flags.as_struct.state; in TransitionFromSuspendedToRunnable() local
116 DCHECK_NE(static_cast<ThreadState>(old_state), kRunnable); in TransitionFromSuspendedToRunnable()
120 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state); in TransitionFromSuspendedToRunnable()
125 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state); in TransitionFromSuspendedToRunnable()
130 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state); in TransitionFromSuspendedToRunnable()
138 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state); in TransitionFromSuspendedToRunnable()
152 return static_cast<ThreadState>(old_state); in TransitionFromSuspendedToRunnable()
Dsignal_catcher.cc136 ThreadState old_state = self->SetStateUnsafe(kRunnable); in HandleSigQuit() local
158 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in HandleSigQuit()
Dthread.h872 ThreadState old_state = GetState(); in SetStateUnsafe() local
874 return old_state; in SetStateUnsafe()
Ddebugger.cc772 ThreadState old_state = self->SetStateUnsafe(kRunnable); in GoActive() local
773 CHECK_NE(old_state, kRunnable); in GoActive()
779 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in GoActive()
796 ThreadState old_state = self->SetStateUnsafe(kRunnable); in Disconnected() local
821 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in Disconnected()
3129 const ThreadState old_state = self->SetStateUnsafe(kRunnable); in ManageDeoptimization() local
3139 CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); in ManageDeoptimization()
/art/runtime/gc/collector/
Dsemi_space.cc170 ThreadState old_state = self_->SetStateUnsafe(kRunnable); in MarkingPhase() local
176 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable); in MarkingPhase()
/art/runtime/arch/
Dstub_test.cc615 LockWord::LockState old_state = lock.GetState(); in TEST_F() local
616 EXPECT_EQ(LockWord::LockState::kUnlocked, old_state); in TEST_F()
688 LockWord::LockState old_state = lock.GetState(); in TestUnlockObject() local
689 EXPECT_EQ(LockWord::LockState::kUnlocked, old_state); in TestUnlockObject()
/art/runtime/jdwp/
Djdwp_handler.cc1659 ThreadState old_state = self->TransitionFromSuspendedToRunnable(); in ProcessRequest() local
1711 self->TransitionFromRunnableToSuspended(old_state); in ProcessRequest()