Home | History | Annotate | Download | only in ceres

Lines Matching refs:mu_

286   explicit CeresMutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
287 ~CeresMutexLock() { mu_->Unlock(); }
289 Mutex * const mu_;
298 explicit CeresReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
299 ~CeresReaderMutexLock() { mu_->ReaderUnlock(); }
301 Mutex * const mu_;
309 explicit CeresWriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
310 ~CeresWriterMutexLock() { mu_->WriterUnlock(); }
312 Mutex * const mu_;