Home
last modified time | relevance | path

Searched refs:__stop_callback_base (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__stop_token/
H A Dstop_state.h29 struct __stop_callback_base : __intrusive_node_base<__stop_callback_base> { struct
30 using __callback_fn_t = void(__stop_callback_base*) noexcept; argument
31 …_LIBCPP_HIDE_FROM_ABI explicit __stop_callback_base(__callback_fn_t* __callback_fn) : __callback_f… in __stop_callback_base() function
63 using __callback_list = __intrusive_list_view<__stop_callback_base>;
140 …_LIBCPP_AVAILABILITY_SYNC _LIBCPP_HIDE_FROM_ABI bool __add_callback(__stop_callback_base* __cb) no… in __add_callback()
167 …_LIBCPP_AVAILABILITY_SYNC _LIBCPP_HIDE_FROM_ABI void __remove_callback(__stop_callback_base* __cb)… in __remove_callback()
H A Dstop_callback.h37 class _LIBCPP_AVAILABILITY_SYNC stop_callback : private __stop_callback_base {
75 friend __stop_callback_base; variable
80 : __stop_callback_base([](__stop_callback_base* __cb_base) noexcept { in stop_callback()