Lines Matching refs:cv_status
13 enum class cv_status; {
124 [heading Enumeration `cv_status`]
128 enum class cv_status {
181 cv_status wait_until( ``[locktype]`` &,
190 cv_status wait_for( ``[locktype]`` &,
290 cv_status wait_until( ``[locktype]`` & lk,
314 if ( cv_status::timeout == wait_until( lk, abs_time) )
324 [[Returns:] [The overload without `pred` returns `cv_status::no_timeout` if
325 awakened by `notify_one()` or `notify_all()`, or `cv_status::timeout` if
336 cv_status wait_for( ``[locktype]`` & lk,
360 if ( cv_status::timeout == wait_for( lk, rel_time) ) {
372 [[Returns:] [The overload without `pred` returns `cv_status::no_timeout` if
373 awakened by `notify_one()` or `notify_all()`, or `cv_status::timeout` if