HomeSort by relevance Sort by last modified time
    Searched full:old_thread_state_ (Results 1 - 1 of 1) sorted by null

  /art/runtime/
scoped_thread_state_change.h 37 old_thread_state_ = kTerminated;
46 old_thread_state_ = self->GetState();
47 runnable_transition = old_thread_state_ == kRunnable || new_thread_state == kRunnable;
53 if (runnable_transition && old_thread_state_ != new_thread_state) {
57 DCHECK_EQ(old_thread_state_, kRunnable);
73 if (old_thread_state_ != thread_state_) {
74 if (old_thread_state_ == kRunnable) {
77 self_->TransitionFromRunnableToSuspended(old_thread_state_);
80 self_->SetState(old_thread_state_);
93 : self_(NULL), thread_state_(kTerminated), old_thread_state_(kTerminated)
100 ThreadState old_thread_state_; member in class:art::ScopedThreadStateChange
    [all...]

Completed in 52 milliseconds