/external/libcxx/src/ |
D | condition_variable.cpp | 23 __libcpp_condvar_destroy(&__cv_); in ~condition_variable() 29 __libcpp_condvar_signal(&__cv_); in notify_one() 35 __libcpp_condvar_broadcast(&__cv_); in notify_all() 44 int ec = __libcpp_condvar_wait(&__cv_, lk.mutex()->native_handle()); in wait() 74 int ec = __libcpp_condvar_timedwait(&__cv_, lk.mutex()->native_handle(), &ts); in __do_timed_wait()
|
D | mutex.cpp | 105 __cv_.wait(lk); in lock() 126 __cv_.notify_one(); in unlock() 155 __cv_.wait(lk); in lock() 184 __cv_.notify_one(); in unlock()
|
D | future.cpp | 98 __cv_.notify_all(); in set_value() 119 __cv_.notify_all(); in set_exception() 137 __cv_.notify_all(); in __make_ready() 169 __cv_.wait(__lk); in __sub_wait()
|
/external/llvm-project/libcxx/include/ |
D | __std_stream | 56 const codecvt<char_type, char, state_type>* __cv_; 83 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc); 84 __encoding_ = __cv_->encoding(); 85 __always_noconv_ = __cv_->always_noconv(); 138 __r = __cv_->in(*__st_, __extbuf, __extbuf + __nread, __enxt, 197 switch (__cv_->out(*__st_, &__ci, &__ci + 1, __inxt, 243 const codecvt<char_type, char, state_type>* __cv_; 254 __cv_(&use_facet<codecvt<char_type, char, state_type> >(this->getloc())), 256 __always_noconv_(__cv_->always_noconv()) 283 __r = __cv_->out(*__st_, pbase, pptr, __e, [all …]
|
D | condition_variable | 123 condition_variable __cv_; 177 __cv_.notify_one(); 185 __cv_.notify_all(); 203 __cv_.wait(__lk); 225 return __cv_.wait_until(__lk, __t);
|
D | fstream | 275 const codecvt<char_type, char, state_type>* __cv_; 297 __cv_(nullptr), 308 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(this->getloc()); 309 __always_noconv_ = __cv_->always_noconv(); 336 __cv_ = __rhs.__cv_; 448 _VSTD::swap(__cv_, __rhs.__cv_); 751 if (!__cv_) 756 __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_, 833 if (!__cv_) 837 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e, [all …]
|
D | mutex | 238 condition_variable __cv_; 269 no_timeout = __cv_.wait_until(__lk, __t) == cv_status::no_timeout; 281 condition_variable __cv_; 321 no_timeout = __cv_.wait_until(lk, __t) == cv_status::no_timeout;
|
D | __mutex_base | 275 __libcpp_condvar_t __cv_ = _LIBCPP_CONDVAR_INITIALIZER; 324 _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() {return &__cv_;} 508 … int __ec = pthread_cond_clockwait(&__cv_, __lk.mutex()->native_handle(), CLOCK_MONOTONIC, &__ts);
|
D | locale | 3912 _Codecvt* __cv_; 3967 __cv_(__pcvt), 3972 __always_noconv_(__cv_ ? __cv_->always_noconv() : false) 3981 delete __cv_; 3992 if (__cv_ == 0 || __bufptr_ == 0) 4032 __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_, 4060 if (__cv_ != 0 && __bufptr_ != 0 && this->eback() < this->gptr()) 4081 if (__cv_ == 0 || __bufptr_ == 0) 4109 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e, 4197 int __width = __cv_->encoding(); [all …]
|
D | future | 534 mutable condition_variable __cv_; 601 __cv_.wait_until(__lk, __abs_time); 657 __cv_.notify_all(); 729 __cv_.notify_all();
|
/external/libcxx/include/ |
D | __std_stream | 57 const codecvt<char_type, char, state_type>* __cv_; 84 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc); 85 __encoding_ = __cv_->encoding(); 86 __always_noconv_ = __cv_->always_noconv(); 139 __r = __cv_->in(*__st_, __extbuf, __extbuf + __nread, __enxt, 198 switch (__cv_->out(*__st_, &__ci, &__ci + 1, __inxt, 244 const codecvt<char_type, char, state_type>* __cv_; 255 __cv_(&use_facet<codecvt<char_type, char, state_type> >(this->getloc())), 257 __always_noconv_(__cv_->always_noconv()) 284 __r = __cv_->out(*__st_, pbase, pptr, __e, [all …]
|
D | condition_variable | 124 condition_variable __cv_; 178 __cv_.notify_one(); 186 __cv_.notify_all(); 204 __cv_.wait(__lk); 226 return __cv_.wait_until(__lk, __t);
|
D | fstream | 275 const codecvt<char_type, char, state_type>* __cv_; 297 __cv_(nullptr), 308 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(this->getloc()); 309 __always_noconv_ = __cv_->always_noconv(); 336 __cv_ = __rhs.__cv_; 448 _VSTD::swap(__cv_, __rhs.__cv_); 751 if (!__cv_) 756 __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_, 833 if (!__cv_) 837 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e, [all …]
|
D | __mutex_base | 291 __libcpp_condvar_t __cv_ = _LIBCPP_CONDVAR_INITIALIZER; 293 __libcpp_condvar_t __cv_; 301 condition_variable() _NOEXCEPT {__cv_ = (__libcpp_condvar_t)_LIBCPP_CONDVAR_INITIALIZER;} 345 _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() {return &__cv_;}
|
D | mutex | 238 condition_variable __cv_; 269 no_timeout = __cv_.wait_until(__lk, __t) == cv_status::no_timeout; 281 condition_variable __cv_; 321 no_timeout = __cv_.wait_until(lk, __t) == cv_status::no_timeout;
|
D | locale | 3917 _Codecvt* __cv_; 3972 __cv_(__pcvt), 3977 __always_noconv_(__cv_ ? __cv_->always_noconv() : false) 3986 delete __cv_; 3997 if (__cv_ == 0 || __bufptr_ == 0) 4037 __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_, 4065 if (__cv_ != 0 && __bufptr_ != 0 && this->eback() < this->gptr()) 4086 if (__cv_ == 0 || __bufptr_ == 0) 4114 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e, 4202 int __width = __cv_->encoding(); [all …]
|
D | future | 537 mutable condition_variable __cv_; 604 __cv_.wait_until(__lk, __abs_time); 672 __cv_.notify_all(); 748 __cv_.notify_all();
|
/external/llvm-project/libcxx/src/ |
D | condition_variable.cpp | 29 __libcpp_condvar_signal(&__cv_); in notify_one() 35 __libcpp_condvar_broadcast(&__cv_); in notify_all() 44 int ec = __libcpp_condvar_wait(&__cv_, lk.mutex()->native_handle()); in wait() 74 int ec = __libcpp_condvar_timedwait(&__cv_, lk.mutex()->native_handle(), &ts); in __do_timed_wait()
|
D | mutex.cpp | 107 __cv_.wait(lk); in lock() 128 __cv_.notify_one(); in unlock() 157 __cv_.wait(lk); in lock() 186 __cv_.notify_one(); in unlock()
|
D | condition_variable_destructor.cpp | 29 __libcpp_condvar_t __cv_ = _LIBCPP_CONDVAR_INITIALIZER; member in condition_variable 42 __libcpp_condvar_destroy(&__cv_); in ~condition_variable()
|
D | future.cpp | 97 __cv_.notify_all(); in set_value() 118 __cv_.notify_all(); in set_exception() 136 __cv_.notify_all(); in __make_ready() 168 __cv_.wait(__lk); in __sub_wait()
|