Searched refs:__cv_ (Results 1 – 11 of 11) sorted by relevance
| /openbsd/src/gnu/llvm/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 | 126 condition_variable __cv_; 180 __cv_.notify_one(); 188 __cv_.notify_all(); 206 __cv_.wait(__lk); 228 return __cv_.wait_until(__lk, __t);
|
| D | fstream | 285 const codecvt<char_type, char, state_type>* __cv_; 307 __cv_(nullptr), 318 __cv_ = &std::use_facet<codecvt<char_type, char, state_type> >(this->getloc()); 319 __always_noconv_ = __cv_->always_noconv(); 344 __cv_ = __rhs.__cv_; 467 _VSTD::swap(__cv_, __rhs.__cv_); 770 if (!__cv_) 775 __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_, 852 if (!__cv_) 856 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e, [all …]
|
| D | mutex | 237 condition_variable __cv_; 267 no_timeout = __cv_.wait_until(__lk, __t) == cv_status::no_timeout; 279 condition_variable __cv_; 317 no_timeout = __cv_.wait_until(lk, __t) == cv_status::no_timeout;
|
| D | __mutex_base | 277 __libcpp_condvar_t __cv_ = _LIBCPP_CONDVAR_INITIALIZER; 326 _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() {return &__cv_;} 502 … int __ec = pthread_cond_clockwait(&__cv_, __lk.mutex()->native_handle(), CLOCK_MONOTONIC, &__ts);
|
| D | locale | 3893 _Codecvt* __cv_; 3960 __cv_(__pcvt), 3965 __always_noconv_(__cv_ ? __cv_->always_noconv() : false) 3974 delete __cv_; 3986 if (__cv_ == 0 || __bufptr_ == 0) 4028 __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_, 4058 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, 4200 int __width = __cv_->encoding(); [all …]
|
| D | future | 542 mutable condition_variable __cv_; 609 __cv_.wait_until(__lk, __abs_time); 667 __cv_.notify_all(); 739 __cv_.notify_all();
|
| /openbsd/src/gnu/llvm/libcxx/src/ |
| D | condition_variable.cpp | 31 __libcpp_condvar_signal(&__cv_); in notify_one() 37 __libcpp_condvar_broadcast(&__cv_); in notify_all() 46 int ec = __libcpp_condvar_wait(&__cv_, lk.mutex()->native_handle()); in wait() 76 int ec = __libcpp_condvar_timedwait(&__cv_, lk.mutex()->native_handle(), &ts); in __do_timed_wait()
|
| D | mutex.cpp | 112 __cv_.wait(lk); in lock() 133 __cv_.notify_one(); in unlock() 162 __cv_.wait(lk); in lock() 191 __cv_.notify_one(); in unlock()
|
| D | future.cpp | 89 __cv_.notify_all(); in set_value() 110 __cv_.notify_all(); in set_exception() 128 __cv_.notify_all(); in __make_ready() 160 __cv_.wait(__lk); in __sub_wait()
|
| 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()
|