Searched refs:timed_mutex (Results 1 – 21 of 21) sorted by relevance
90 timed_mutex::timed_mutex() in timed_mutex() function in timed_mutex95 timed_mutex::~timed_mutex() in ~timed_mutex()101 timed_mutex::lock() in lock()110 timed_mutex::try_lock() _NOEXCEPT in try_lock()122 timed_mutex::unlock() _NOEXCEPT in unlock()
54 class timed_mutex57 timed_mutex();58 ~timed_mutex();60 timed_mutex(const timed_mutex&) = delete;61 timed_mutex& operator=(const timed_mutex&) = delete;235 class _LIBCPP_TYPE_VIS timed_mutex241 timed_mutex();242 ~timed_mutex();245 timed_mutex(const timed_mutex&); // = delete;246 timed_mutex& operator=(const timed_mutex&); // = delete;[all …]
26 std::timed_mutex m;37 std::unique_lock<std::timed_mutex> lk(m, Clock::now() + ms(300)); in f1()47 std::unique_lock<std::timed_mutex> lk(m, Clock::now() + ms(250)); in f2()
26 std::timed_mutex m;37 std::unique_lock<std::timed_mutex> lk(m, ms(300)); in f1()47 std::unique_lock<std::timed_mutex> lk(m, ms(250)); in f2()
20 std::timed_mutex m0; in main()21 std::timed_mutex m1(m0); in main()
20 std::timed_mutex m0; in main()21 std::timed_mutex m1; in main()
22 std::timed_mutex m; in main()
25 std::timed_mutex m;
23 std::timed_mutex m;
24 std::timed_mutex m;
26 typedef std::timed_mutex L0;
27 typedef std::timed_mutex L0;
25 typedef std::timed_mutex L0;
28 typedef std::timed_mutex L0;
38 typedef std::timed_mutex L0;
45 typedef std::timed_mutex L0;
56 typedef std::timed_mutex L0;
114 std::timed_mutex free_batch_lock_;
319 std::unique_lock<std::timed_mutex> l(free_batch_lock_, kLockTimeout); in RecordFree()