Lines Matching defs:self
172 void BaseMutex::CheckSafeToWait(Thread* self) { in CheckSafeToWait()
339 void Mutex::ExclusiveLock(Thread* self) { in ExclusiveLock()
381 bool Mutex::ExclusiveTryLock(Thread* self) { in ExclusiveTryLock()
421 void Mutex::ExclusiveUnlock(Thread* self) { in ExclusiveUnlock()
545 void ReaderWriterMutex::ExclusiveLock(Thread* self) { in ExclusiveLock()
578 void ReaderWriterMutex::ExclusiveUnlock(Thread* self) { in ExclusiveUnlock()
607 bool ReaderWriterMutex::ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns) { in ExclusiveLockWithTimeout()
661 bool ReaderWriterMutex::SharedTryLock(Thread* self) { in SharedTryLock()
789 void ConditionVariable::Broadcast(Thread* self) { in Broadcast()
817 void ConditionVariable::Signal(Thread* self) { in Signal()
834 void ConditionVariable::Wait(Thread* self) { in Wait()
839 void ConditionVariable::WaitHoldingLocks(Thread* self) { in WaitHoldingLocks()
871 void ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) { in TimedWait()