Home | History | Annotate | Download | only in foundation

Lines Matching defs:unlock

53  *   // if you need to temporarily unlock the mutex, you can use unlock/relock mutex locally
56 * data.unlock();
64 * // data is now accessible again. Note: it may have changed since unlock().
91 * Upon creation, the mutex is locked. You can use lock()/unlock() methods to
92 * temporarily lock/unlock the mutex. Using any references to the underlying
97 * unlock() or lock() from different threads; they must be called from the thread
131 inline void unlock();
181 mLock.unlock();
186 inline void Mutexed<T>::Locked::unlock() {
189 mLock.unlock();