Lines Matching defs:self
150 void BaseMutex::CheckSafeToWait(Thread* self) { in CheckSafeToWait()
313 void Mutex::ExclusiveLock(Thread* self) { in ExclusiveLock()
356 bool Mutex::ExclusiveTryLock(Thread* self) { in ExclusiveTryLock()
397 void Mutex::ExclusiveUnlock(Thread* self) { in ExclusiveUnlock()
492 void ReaderWriterMutex::ExclusiveLock(Thread* self) { in ExclusiveLock()
526 void ReaderWriterMutex::ExclusiveUnlock(Thread* self) { in ExclusiveUnlock()
561 bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) { in ExclusiveLockWithTimeout()
615 bool ReaderWriterMutex::SharedTryLock(Thread* self) { in SharedTryLock()
711 void ConditionVariable::Broadcast(Thread* self) { in Broadcast()
739 void ConditionVariable::Signal(Thread* self) { in Signal()
756 void ConditionVariable::Wait(Thread* self) { in Wait()
761 void ConditionVariable::WaitHoldingLocks(Thread* self) { in WaitHoldingLocks()
796 void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) { in TimedWait()