Lines Matching refs:self_
356 explicit MutexLock(Thread* self, Mutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) : self_(self), mu_(mu) { in MutexLock()
357 mu_.ExclusiveLock(self_); in MutexLock()
361 mu_.ExclusiveUnlock(self_); in UNLOCK_FUNCTION()
365 Thread* const self_;
377 self_(self), mu_(mu) { in ReaderMutexLock()
378 mu_.SharedLock(self_); in ReaderMutexLock()
382 mu_.SharedUnlock(self_); in UNLOCK_FUNCTION()
386 Thread* const self_;
399 self_(self), mu_(mu) { in WriterMutexLock()
400 mu_.ExclusiveLock(self_); in WriterMutexLock()
404 mu_.ExclusiveUnlock(self_); in UNLOCK_FUNCTION()
408 Thread* const self_;