Home
last modified time | relevance | path

Searched refs:timed_mutex (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/libcxx/src/
H A Dmutex.cpp74 timed_mutex::timed_mutex() : __locked_(false) {} in timed_mutex() function in timed_mutex
76 timed_mutex::~timed_mutex() { lock_guard<mutex> _(__m_); } in ~timed_mutex()
78 void timed_mutex::lock() { in lock()
85 bool timed_mutex::try_lock() noexcept { in try_lock()
94 void timed_mutex::unlock() noexcept { in unlock()
/src/contrib/llvm-project/libcxx/include/
H A Dmutex53 class timed_mutex
56 timed_mutex();
57 ~timed_mutex();
59 timed_mutex(const timed_mutex&) = delete;
60 timed_mutex& operator=(const timed_mutex&) = delete;
239 class _LIBCPP_EXPORTED_FROM_ABI timed_mutex {
245 timed_mutex();
246 ~timed_mutex();
248 timed_mutex(const timed_mutex&) = delete;
249 timed_mutex& operator=(const timed_mutex&) = delete;
[all …]
/src/contrib/llvm-project/libcxx/modules/std/
H A Dmutex.inc16 // [thread.timedmutex.class] class timed_mutex
17 using std::timed_mutex;
/src/contrib/unbound/testcode/
H A Dchecklocks.c569 static int timed_mutex(void* arg, struct timespec* to) in timed_mutex() function
604 try_mutex, timed_mutex, &lock->u.mutex, 1, 0); in checklock_lock()
/src/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc2889 SYMBOL(timed_mutex, std::, <mutex>)