Home
last modified time | relevance | path

Searched refs:cancel_group_execution (Results 1 – 17 of 17) sorted by relevance

/oneTBB/examples/task_arena/fractal/
H A Dfractal.hpp152 context[active].cancel_group_execution(); in active_fractal_zoom_in()
156 context[active].cancel_group_execution(); in active_fractal_zoom_out()
160 context[active].cancel_group_execution(); in active_fractal_quality_inc()
164 context[active].cancel_group_execution(); in active_fractal_quality_dec()
168 context[active].cancel_group_execution(); in active_fractal_move_up()
172 context[active].cancel_group_execution(); in active_fractal_move_down()
176 context[active].cancel_group_execution(); in active_fractal_move_left()
180 context[active].cancel_group_execution(); in active_fractal_move_right()
/oneTBB/doc/main/tbb_userguide/
H A DCancellation_Without_An_Exception.rst7 …thm but not throw an exception, use the expression ``current_context()->cancel_group_execution()``.
9 Calling ``cancel_group_execution()`` cancels all tasks in its ``task_group_context``, which is expl…
12 The example below shows how to use ``current_context()->cancel_group_execution()``.
33 if( current_context()->cancel_group_execution() )
H A Dcancel_a_graph.rst9 cancel_group_execution() on that object. This is done in the example
40 t.cancel_group_execution();
69 task::self().group()->cancel_group_execution();
/oneTBB/test/conformance/
H A Dconformance_task_group_context.cpp49 CHECK(ctx.cancel_group_execution());
/oneTBB/src/tbb/
H A Dtask_group_context.cpp226 bool task_group_context_impl::cancel_group_execution(d1::task_group_context& ctx) { in cancel_group_execution() function in tbb::detail::r1::task_group_context_impl
345 bool __TBB_EXPORTED_FUNC cancel_group_execution(d1::task_group_context& ctx) { in cancel_group_execution() function
346 return task_group_context_impl::cancel_group_execution(ctx); in cancel_group_execution()
H A Dscheduler_common.h581 static bool cancel_group_execution(d1::task_group_context&);
H A Dtask_dispatcher.h361 if (ed.context->cancel_group_execution()) { in local_wait_for_all()
/oneTBB/include/oneapi/tbb/
H A Dtask_group.h68 TBB_EXPORT bool __TBB_EXPORTED_FUNC cancel_group_execution(d1::task_group_context&);
377 bool cancel_group_execution() { in cancel_group_execution() function
378 return r1::cancel_group_execution(actual_context()); in cancel_group_execution()
592 context().cancel_group_execution(); in cancel()
H A Dparallel_sort.h158 context.cancel_group_execution(); in operator()
H A Dflow_graph.h508 my_context->cancel_group_execution(); in cancel()
/oneTBB/test/common/
H A Dexception_handling.h276 m_groupToCancel.cancel_group_execution(); in operator()
H A Dgraph_utils.h557 CHECK_MESSAGE(tgc.cancel_group_execution(), "task group already cancelled");
593 CHECK_MESSAGE(tgc.cancel_group_execution(), "task group already cancelled");
/oneTBB/src/tbb/def/
H A Dwin64-tbb.def89 ?cancel_group_execution@r1@detail@tbb@@YA_NAEAVtask_group_context@d1@23@@Z
H A Dwin32-tbb.def85 ?cancel_group_execution@r1@detail@tbb@@YA_NAAVtask_group_context@d1@23@@Z
/oneTBB/test/tbb/
H A Dtest_flow_graph_whitebox.cpp333 g.my_context->cancel_group_execution(); in TestFunctionNode()
596 g.my_context->cancel_group_execution(); in TestMultifunctionNode()
H A Dtest_eh_algorithms.cpp522 m_GroupToCancel.cancel_group_execution(); in operator ()()
656 tgc.cancel_group_execution(); in operator ()()
H A Dtest_async_node.cpp120 bool result = my_tgc.cancel_group_execution(); in operator ()()