Home | History | Annotate | Download | only in detail

Lines Matching defs:mutex

22 // Helper class to lock and unlock a mutex automatically.
23 template <typename Mutex>
32 scoped_lock(Mutex& m, adopt_lock_t)
39 explicit scoped_lock(Mutex& m)
79 // Get the underlying mutex.
80 Mutex& mutex()
86 // The underlying mutex.
87 Mutex& mutex_;
89 // Whether the mutex is currently locked or unlocked.