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

  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 17 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
29 bool try_lock_until(const std::chrono::time_point<Clock, Duration>& abs_time) function in struct:mutex
45 assert(lk.try_lock_until(Clock::now()) == true);
51 lk.try_lock_until(Clock::now());
60 assert(lk.try_lock_until(Clock::now()) == false);
67 lk.try_lock_until(Clock::now());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/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());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
try_lock_until.pass.cpp 18 // bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
28 bool try_lock_until(const std::chrono::time_point<Clock, Duration>& abs_time) function in struct:mutex
44 assert(lk.try_lock_until(Clock::now()) == true);
49 lk.try_lock_until(Clock::now());
57 assert(lk.try_lock_until(Clock::now()) == false);
63 lk.try_lock_until(Clock::now());

Completed in 508 milliseconds