Home | History | Annotate | Download | only in ceres

Lines Matching refs:mu_

279   explicit CeresMutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
280 ~CeresMutexLock() { mu_->Unlock(); }
282 Mutex * const mu_;
291 explicit CeresReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
292 ~CeresReaderMutexLock() { mu_->ReaderUnlock(); }
294 Mutex * const mu_;
302 explicit CeresWriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
303 ~CeresWriterMutexLock() { mu_->WriterUnlock(); }
305 Mutex * const mu_;