OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:condition_variable
(Results
51 - 75
of
367
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
copy.fail.cpp
10
// <
condition_variable
>
16
#include <
condition_variable
>
default.pass.cpp
10
// <
condition_variable
>
16
#include <
condition_variable
>
wait.exception.pass.cpp
2
#include <
condition_variable
>
wait_for.exception.pass.cpp
2
#include <
condition_variable
>
destructor.pass.cpp
10
// <
condition_variable
>
16
#include <
condition_variable
>
wait.pass.cpp
10
// <
condition_variable
>
17
#include <
condition_variable
>
wait_pred.pass.cpp
10
// <
condition_variable
>
17
#include <
condition_variable
>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/
version.pass.cpp
10
// <
condition_variable
>
12
#include <
condition_variable
>
/external/libcxx/include/
__mutex_base
265
class _LIBCPP_TYPE_VIS
condition_variable
271
constexpr
condition_variable
() : __cv_(PTHREAD_COND_INITIALIZER) {}
273
condition_variable
() {__cv_ = (pthread_cond_t)PTHREAD_COND_INITIALIZER;}
275
~
condition_variable
();
278
condition_variable
(const
condition_variable
&); // = delete;
279
condition_variable
& operator=(const
condition_variable
&); // = delete;
337
condition_variable
::wait(unique_lock<mutex>& __lk, _Predicate __pred)
345
condition_variable
::wait_until(unique_lock<mutex>& __lk
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
__mutex_base
270
class _LIBCPP_TYPE_VIS
condition_variable
276
constexpr
condition_variable
() : __cv_(PTHREAD_COND_INITIALIZER) {}
278
condition_variable
() {__cv_ = (pthread_cond_t)PTHREAD_COND_INITIALIZER;}
280
~
condition_variable
();
283
condition_variable
(const
condition_variable
&); // = delete;
284
condition_variable
& operator=(const
condition_variable
&); // = delete;
344
condition_variable
::wait(unique_lock<mutex>& __lk, _Predicate __pred)
352
condition_variable
::wait_until(unique_lock<mutex>& __lk
[
all
...]
/prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
__mutex_base
265
class _LIBCPP_TYPE_VIS
condition_variable
271
constexpr
condition_variable
() : __cv_(PTHREAD_COND_INITIALIZER) {}
273
condition_variable
() {__cv_ = (pthread_cond_t)PTHREAD_COND_INITIALIZER;}
275
~
condition_variable
();
278
condition_variable
(const
condition_variable
&); // = delete;
279
condition_variable
& operator=(const
condition_variable
&); // = delete;
337
condition_variable
::wait(unique_lock<mutex>& __lk, _Predicate __pred)
345
condition_variable
::wait_until(unique_lock<mutex>& __lk
[
all
...]
/external/libcxx/test/thread/thread.condition/thread.condition.condvar/
wait_for_pred.pass.cpp
10
// <
condition_variable
>
12
// class
condition_variable
;
20
#include <
condition_variable
>
35
std::
condition_variable
cv;
wait_until.pass.cpp
10
// <
condition_variable
>
12
// class
condition_variable
;
19
#include <
condition_variable
>
42
std::
condition_variable
cv;
wait_until_pred.pass.cpp
10
// <
condition_variable
>
12
// class
condition_variable
;
20
#include <
condition_variable
>
52
std::
condition_variable
cv;
/external/libcxx/test/thread/thread.condition/thread.condition.condvarany/
wait.exception.pass.cpp
2
#include <
condition_variable
>
wait_for.exception.pass.cpp
2
#include <
condition_variable
>
destructor.pass.cpp
10
// <
condition_variable
>
16
#include <
condition_variable
>
wait.pass.cpp
10
// <
condition_variable
>
17
#include <
condition_variable
>
wait_pred.pass.cpp
10
// <
condition_variable
>
17
#include <
condition_variable
>
notify_all.pass.cpp
10
// <
condition_variable
>
16
#include <
condition_variable
>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
wait_for_pred.pass.cpp
10
// <
condition_variable
>
12
// class
condition_variable
;
20
#include <
condition_variable
>
35
std::
condition_variable
cv;
wait_until.pass.cpp
10
// <
condition_variable
>
12
// class
condition_variable
;
19
#include <
condition_variable
>
42
std::
condition_variable
cv;
wait_until_pred.pass.cpp
10
// <
condition_variable
>
12
// class
condition_variable
;
20
#include <
condition_variable
>
52
std::
condition_variable
cv;
/external/libcxx/src/
thread.cpp
156
typedef vector<pair<
condition_variable
*, mutex*>,
157
__hidden_allocator<pair<
condition_variable
*, mutex*> > > _Notify;
168
void notify_all_at_thread_exit(
condition_variable
* cv, mutex* m);
189
__thread_struct_imp::notify_all_at_thread_exit(
condition_variable
* cv, mutex* m)
191
notify_.push_back(pair<
condition_variable
*, mutex*>(cv, m));
214
__thread_struct::notify_all_at_thread_exit(
condition_variable
* cv, mutex* m)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
thread.cpp
163
typedef vector<pair<
condition_variable
*, mutex*>,
164
__hidden_allocator<pair<
condition_variable
*, mutex*> > > _Notify;
175
void notify_all_at_thread_exit(
condition_variable
* cv, mutex* m);
196
__thread_struct_imp::notify_all_at_thread_exit(
condition_variable
* cv, mutex* m)
198
notify_.push_back(pair<
condition_variable
*, mutex*>(cv, m));
221
__thread_struct::notify_all_at_thread_exit(
condition_variable
* cv, mutex* m)
Completed in 369 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>