Home | History | Annotate | Download | only in stubs

Lines Matching refs:mu_

1124   explicit MutexLock(Mutex *mu) : mu_(mu) { this->mu_->Lock(); }
1125 ~MutexLock() { this->mu_->Unlock(); }
1127 Mutex *const mu_;
1139 mu_(mu) { if (this->mu_ != NULL) { this->mu_->Lock(); } }
1140 ~MutexLockMaybe() { if (this->mu_ != NULL) { this->mu_->Unlock(); } }
1142 Mutex *const mu_;