Home | History | Annotate | Download | only in jdwp

Lines Matching refs:thread_

204       thread_(NULL),
421 thread_ = Thread::Current();
425 MutexLock locker(thread_, thread_start_lock_);
427 thread_start_cond_.Broadcast(thread_);
431 CHECK_EQ(thread_->GetState(), kNative);
432 Locks::mutator_lock_->AssertNotHeld(thread_);
433 thread_->SetState(kWaitingInMainDebuggerLoop);
461 MutexLock mu(thread_, attach_lock_);
462 attach_cond_.Broadcast(thread_);
475 MutexLock mu(thread_, *Locks::thread_suspend_count_lock_);
476 CHECK_EQ(thread_->GetState(), kWaitingInMainDebuggerLoop);
494 ScopedObjectAccess soa(thread_);
499 MutexLock mu(thread_, attach_lock_);
500 attach_cond_.Broadcast(thread_);
510 thread_->TransitionFromSuspendedToRunnable();
512 thread_->TransitionFromRunnableToSuspended(kWaitingInMainDebuggerLoop);
516 ScopedObjectAccess soa(thread_);
534 CHECK_EQ(thread_->GetState(), kWaitingInMainDebuggerLoop);
535 thread_->SetState(kNative);
549 return thread_;