Lines Matching full:execution
4 #include <sdbusplus/async/execution.hpp>
73 friend void tag_invoke(execution::start_t, fdio_completion& self) noexcept in tag_invoke()
89 template <execution::receiver Receiver>
99 execution::set_value(std::move(receiver)); in complete()
104 execution::set_error(std::move(receiver), exceptionPtr); in error()
109 execution::set_stopped(std::move(receiver)); in stop()
124 friend auto tag_invoke(execution::get_completion_signatures_t,
126 -> execution::completion_signatures<
127 execution::set_value_t(),
128 execution::set_error_t(std::exception_ptr),
129 execution::set_stopped_t()>;
131 template <execution::receiver R>
132 friend auto tag_invoke(execution::connect_t, fdio_sender&& self, R r) in tag_invoke()