HomeSort by relevance Sort by last modified time
    Searched refs:try_lock_until (Results 1 - 3 of 3) sorted by null

  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 15 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
25 bool try_lock_until(const std::chrono::time_point<Clock, Duration>& abs_time) function in struct:mutex
41 assert(lk.try_lock_until(Clock::now()) == true);
46 lk.try_lock_until(Clock::now());
54 assert(lk.try_lock_until(Clock::now()) == false);
60 lk.try_lock_until(Clock::now());
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/
try_lock_until.pass.cpp 15 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
33 assert(m.try_lock_until(Clock::now() + ms(300)) == true);
43 assert(m.try_lock_until(Clock::now() + ms(250)) == false);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/
try_lock_until.pass.cpp 15 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
33 assert(m.try_lock_until(Clock::now() + ms(300)) == true);
45 assert(m.try_lock_until(Clock::now() + ms(250)) == false);

Completed in 114 milliseconds