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

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
condition_variable.cpp 21 pthread_cond_destroy(&__cv_);
27 pthread_cond_signal(&__cv_); variable
33 pthread_cond_broadcast(&__cv_); variable
42 int ec = pthread_cond_wait(&__cv_, lk.mutex()->native_handle());
72 int ec = pthread_cond_timedwait(&__cv_, lk.mutex()->native_handle(), &ts);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
condition_variable.cpp 23 __libcpp_condvar_destroy(&__cv_);
29 __libcpp_condvar_signal(&__cv_); variable
35 __libcpp_condvar_broadcast(&__cv_); variable
44 int ec = __libcpp_condvar_wait(&__cv_, lk.mutex()->native_handle());
74 int ec = __libcpp_condvar_timedwait(&__cv_, lk.mutex()->native_handle(), &ts);
  /external/libcxx/src/
condition_variable.cpp 22 __libcpp_condvar_destroy(&__cv_);
28 __libcpp_condvar_signal(&__cv_); variable
34 __libcpp_condvar_broadcast(&__cv_); variable
43 int ec = __libcpp_condvar_wait(&__cv_, lk.mutex()->native_handle());
73 int ec = __libcpp_condvar_timedwait(&__cv_, lk.mutex()->native_handle(), &ts);
  /frameworks/native/services/vr/performanced/
stdio_filebuf.h 68 const std::codecvt<char_type, char, state_type>* __cv_; member in class:android::dvr::stdio_filebuf
99 __cv_ = &std::use_facet<std::codecvt<char_type, char, state_type> >(__loc);
100 __encoding_ = __cv_->encoding();
101 __always_noconv_ = __cv_->always_noconv();
144 __r = __cv_->in(__st_, __extbuf, __extbuf + __nread, __enxt, &__1buf,
195 switch (__cv_->out(__st_, &__ci, &__ci + 1, __inxt, __extbuf,

Completed in 562 milliseconds