Home | History | Annotate | Download | only in src

Lines Matching refs:mu_

306   explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
307 ~MutexLock() { mu_->Unlock(); }
309 Mutex * const mu_;
318 explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
319 ~ReaderMutexLock() { mu_->ReaderUnlock(); }
321 Mutex * const mu_;
329 explicit WriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
330 ~WriterMutexLock() { mu_->WriterUnlock(); }
332 Mutex * const mu_;