Lines Matching defs:mutex
55 * \brief Scoped mutex lock.
64 ScopedLock (Mutex& mutex);
77 * \brief Acquire mutex lock.
82 * If mutex is currently locked the function will block until current
85 * In recursive mode further calls from the thread owning the mutex will
94 * \brief Release mutex lock.
99 * In recursive mode the mutex will be released once the lock count reaches
111 * This function will never block, i.e. it will return false if mutex
122 * \brief Acquire scoped lock to mutex.
123 * \param mutex Mutex to be locked.
125 inline ScopedLock::ScopedLock (Mutex& mutex)
126 : m_mutex(mutex)