Home
last modified time | relevance | path

Searched refs:current_context (Results 1 – 10 of 10) sorted by relevance

/oneTBB/doc/main/tbb_userguide/
H A DCancellation_Without_An_Exception.rst7 To cancel an algorithm but not throw an exception, use the expression ``current_context()->cancel_g…
8 The part ``current_context()`` references the ``task_group_context*`` of the currently executing ta…
12 The example below shows how to use ``current_context()->cancel_group_execution()``.
33 if( current_context()->cancel_group_execution() )
/oneTBB/include/oneapi/tbb/
H A Dtask.h32 using detail::d1::current_context;
H A Dtask_arena.h457 return nullptr != current_context(); in is_inside_task()
H A Dtask_group.h715 task_group_context* ctx = current_context(); in is_current_task_group_canceling()
/oneTBB/include/oneapi/tbb/detail/
H A D_task.h55 TBB_EXPORT d1::task_group_context* __TBB_EXPORTED_FUNC current_context();
202 using r1::current_context;
/oneTBB/src/tbb/
H A Dtask_dispatcher.cpp140 d1::task_group_context* __TBB_EXPORTED_FUNC current_context() { in current_context() function
/oneTBB/src/tbb/def/
H A Dwin64-tbb.def82 ?current_context@r1@detail@tbb@@YAPEAVtask_group_context@d1@23@XZ
H A Dwin32-tbb.def82 ?current_context@r1@detail@tbb@@YAPAVtask_group_context@d1@23@XZ
/oneTBB/test/common/
H A Dgraph_utils.h776 bool is_inside_task = oneapi::tbb::task::current_context() != nullptr;
/oneTBB/test/tbb/
H A Dtest_eh_algorithms.cpp50 tbb::task_group_context* ctx = tbb::task::current_context(); in increment()