• Home
  • Raw
  • Download

Lines Matching refs:exec

22 namespace exec = boost::asio::execution;
53 struct sender : exec::sender_base
226 BOOST_ASIO_CONSTEXPR bool b1 = exec::can_bulk_execute< in test_can_bulk_execute()
227 no_bulk_execute&, exec::invocable_archetype, std::size_t>::value; in test_can_bulk_execute()
230 BOOST_ASIO_CONSTEXPR bool b2 = exec::can_bulk_execute< in test_can_bulk_execute()
231 const no_bulk_execute&, exec::invocable_archetype, std::size_t>::value; in test_can_bulk_execute()
234 BOOST_ASIO_CONSTEXPR bool b3 = exec::can_bulk_execute< in test_can_bulk_execute()
235 const_member_bulk_execute&, exec::invocable_archetype, std::size_t>::value; in test_can_bulk_execute()
238 BOOST_ASIO_CONSTEXPR bool b4 = exec::can_bulk_execute< in test_can_bulk_execute()
240 exec::invocable_archetype, std::size_t>::value; in test_can_bulk_execute()
243 BOOST_ASIO_CONSTEXPR bool b5 = exec::can_bulk_execute< in test_can_bulk_execute()
244 free_bulk_execute&, exec::invocable_archetype, std::size_t>::value; in test_can_bulk_execute()
247 BOOST_ASIO_CONSTEXPR bool b6 = exec::can_bulk_execute< in test_can_bulk_execute()
248 const free_bulk_execute&, exec::invocable_archetype, std::size_t>::value; in test_can_bulk_execute()
251 BOOST_ASIO_CONSTEXPR bool b7 = exec::can_bulk_execute< in test_can_bulk_execute()
252 executor&, exec::invocable_archetype, std::size_t>::value; in test_can_bulk_execute()
255 BOOST_ASIO_CONSTEXPR bool b8 = exec::can_bulk_execute< in test_can_bulk_execute()
256 const executor&, exec::invocable_archetype, std::size_t>::value; in test_can_bulk_execute()
278 exec::bulk_execute(ex1, handler, 2); in test_bulk_execute()
283 exec::bulk_execute(ex2, handler, 2); in test_bulk_execute()
287 exec::bulk_execute(const_member_bulk_execute(), handler, 2); in test_bulk_execute()
292 exec::bulk_execute(ex3, handler, 2); in test_bulk_execute()
297 exec::bulk_execute(ex4, handler, 2); in test_bulk_execute()
301 exec::bulk_execute(free_bulk_execute(), handler, 2); in test_bulk_execute()
306 exec::execute( in test_bulk_execute()
307 exec::bulk_execute(ex5, counting_handler, 10u), in test_bulk_execute()
313 exec::execute( in test_bulk_execute()
314 exec::bulk_execute(ex6, counting_handler, 10u), in test_bulk_execute()
319 exec::execute( in test_bulk_execute()
320 exec::bulk_execute(executor(), counting_handler, 10u), in test_bulk_execute()