Searched defs:__stop_callback_base (Results 1 – 2 of 2) sorted by relevance
29 struct __stop_callback_base : __intrusive_node_base<__stop_callback_base> { struct30 using __callback_fn_t = void(__stop_callback_base*) noexcept; argument31 …_LIBCPP_HIDE_FROM_ABI explicit __stop_callback_base(__callback_fn_t* __callback_fn) : __callback_f… in __stop_callback_base() function33 _LIBCPP_HIDE_FROM_ABI void __invoke() noexcept { __callback_fn_(this); } in __invoke()35 __callback_fn_t* __callback_fn_;36 atomic<bool> __completed_ = false;37 bool* __destroyed_ = nullptr;
75 friend __stop_callback_base; variable