OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shared_timed_mutex
(Results
1 - 25
of
28
) sorted by null
1
2
/external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
default.pass.cpp
15
// class
shared_timed_mutex
;
17
//
shared_timed_mutex
();
23
std::
shared_timed_mutex
m;
assign.fail.cpp
13
// class
shared_timed_mutex
;
15
//
shared_timed_mutex
& operator=(const
shared_timed_mutex
&) = delete;
21
std::
shared_timed_mutex
m0;
22
std::
shared_timed_mutex
m1;
copy.fail.cpp
13
// class
shared_timed_mutex
;
15
//
shared_timed_mutex
(const
shared_timed_mutex
&) = delete;
21
std::
shared_timed_mutex
m0;
22
std::
shared_timed_mutex
m1(m0);
lock.pass.cpp
17
// class
shared_timed_mutex
;
28
std::
shared_timed_mutex
m;
try_lock.pass.cpp
15
// class
shared_timed_mutex
;
24
std::
shared_timed_mutex
m;
lock_shared.pass.cpp
17
// class
shared_timed_mutex
;
29
std::
shared_timed_mutex
m;
try_lock_for.pass.cpp
17
// class
shared_timed_mutex
;
29
std::
shared_timed_mutex
m;
try_lock_shared.pass.cpp
17
// class
shared_timed_mutex
;
29
std::
shared_timed_mutex
m;
try_lock_until.pass.cpp
17
// class
shared_timed_mutex
;
29
std::
shared_timed_mutex
m;
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
copy_ctor.fail.cpp
19
std::
shared_timed_mutex
m;
23
std::shared_lock<std::
shared_timed_mutex
> lk0(m);
24
std::shared_lock<std::
shared_timed_mutex
> lk = lk0;
copy_assign.fail.cpp
19
std::
shared_timed_mutex
m0;
20
std::
shared_timed_mutex
m1;
24
std::shared_lock<std::
shared_timed_mutex
> lk0(m0);
25
std::shared_lock<std::
shared_timed_mutex
> lk1(m1);
default.pass.cpp
24
std::shared_lock<std::
shared_timed_mutex
> ul;
mutex_try_to_lock.pass.cpp
27
std::
shared_timed_mutex
m;
39
std::shared_lock<std::
shared_timed_mutex
> lk(m, std::try_to_lock);
43
std::shared_lock<std::
shared_timed_mutex
> lk(m, std::try_to_lock);
47
std::shared_lock<std::
shared_timed_mutex
> lk(m, std::try_to_lock);
52
std::shared_lock<std::
shared_timed_mutex
> lk(m, std::try_to_lock);
mutex.pass.cpp
49
std::
shared_timed_mutex
m;
56
std::shared_lock<std::
shared_timed_mutex
> ul(m);
68
std::shared_lock<std::
shared_timed_mutex
> ul(m);
mutex_duration.pass.cpp
30
std::
shared_timed_mutex
m;
53
std::shared_lock<std::
shared_timed_mutex
> lk(m, WaitTime + Tolerance);
63
std::shared_lock<std::
shared_timed_mutex
> lk(m, WaitTime);
mutex_time_point.pass.cpp
17
// class
shared_timed_mutex
;
30
std::
shared_timed_mutex
m;
52
std::shared_lock<std::
shared_timed_mutex
> lk(m, Clock::now() + WaitTime + Tolerance);
62
std::shared_lock<std::
shared_timed_mutex
> lk(m, Clock::now() + WaitTime);
mutex_adopt_lock.pass.cpp
26
typedef std::
shared_timed_mutex
M;
mutex_defer_lock.pass.cpp
26
typedef std::
shared_timed_mutex
M;
move_assign.pass.cpp
27
typedef std::
shared_timed_mutex
M;
move_ctor.pass.cpp
26
typedef std::
shared_timed_mutex
M;
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/
op_bool.pass.cpp
22
std::
shared_timed_mutex
m;
26
std::shared_lock<std::
shared_timed_mutex
> lk0;
28
std::shared_lock<std::
shared_timed_mutex
> lk1(m);
owns_lock.pass.cpp
22
std::
shared_timed_mutex
m;
26
std::shared_lock<std::
shared_timed_mutex
> lk0;
28
std::shared_lock<std::
shared_timed_mutex
> lk1(m);
mutex.pass.cpp
22
std::
shared_timed_mutex
m;
26
std::shared_lock<std::
shared_timed_mutex
> lk0;
28
std::shared_lock<std::
shared_timed_mutex
> lk1(m);
/external/libcxx/src/
shared_mutex.cpp
106
shared_timed_mutex
::
shared_timed_mutex
() : __base() {}
function in class:shared_timed_mutex
107
void
shared_timed_mutex
::lock() { return __base.lock(); }
108
bool
shared_timed_mutex
::try_lock() { return __base.try_lock(); }
109
void
shared_timed_mutex
::unlock() { return __base.unlock(); }
110
void
shared_timed_mutex
::lock_shared() { return __base.lock_shared(); }
111
bool
shared_timed_mutex
::try_lock_shared() { return __base.try_lock_shared(); }
112
void
shared_timed_mutex
::unlock_shared() { return __base.unlock_shared(); }
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
lock.pass.cpp
27
std::
shared_timed_mutex
m;
49
std::shared_lock<std::
shared_timed_mutex
> lk(m, std::defer_lock);
Completed in 149 milliseconds
1
2