Home
last modified time | relevance | path

Searched defs:stop_source (Results 1 – 2 of 2) sorted by relevance

/llvm-project/libcxx/include/__stop_token/
H A Dstop_source.h35 _LIBCPP_HIDE_FROM_ABI stop_source() : __state_(new __stop_state()) { __state_->__increment_stop_source_counter(); } in stop_source() function
37 _LIBCPP_HIDE_FROM_ABI explicit stop_source(nostopstate_t) noexcept : __state_(nullptr) {} in stop_source() function
39 _LIBCPP_HIDE_FROM_ABI stop_source(const stop_source& __other) noexcept : __state_(__other.__state_) { in stop_source() function
[all...]
H A Dstop_token.h52 friend class stop_source; variable