Lines Matching refs:Mutex
37 class Mutex class
40 Mutex (deUint32 flags = 0);
41 ~Mutex (void);
48 Mutex (const Mutex& other); // Not allowed!
49 Mutex& operator= (const Mutex& other); // Not allowed!
64 ScopedLock (Mutex& mutex);
71 Mutex& m_mutex;
88 inline void Mutex::lock (void) throw() in lock()
102 inline void Mutex::unlock (void) throw() in unlock()
114 inline bool Mutex::tryLock (void) throw() in tryLock()
125 inline ScopedLock::ScopedLock (Mutex& mutex) in ScopedLock()