Home | History | Annotate | Download | only in stubs

Lines Matching refs:mu_

84   explicit MutexLock(Mutex *mu) : mu_(mu) { this->mu_->Lock(); }
85 ~MutexLock() { this->mu_->Unlock(); }
87 Mutex *const mu_;
99 mu_(mu) { if (this->mu_ != NULL) { this->mu_->Lock(); } }
100 ~MutexLockMaybe() { if (this->mu_ != NULL) { this->mu_->Unlock(); } }
102 Mutex *const mu_;