Lines Matching refs:h
513 task_group_status internal_run_and_wait(d2::task_handle&& h) { in internal_run_and_wait() argument
514 __TBB_ASSERT(h != nullptr, "Attempt to schedule empty task_handle"); in internal_run_and_wait()
517 …__TBB_ASSERT(&acs::ctx_of(h) == &context(), "Attempt to schedule task_handle into different task_g… in internal_run_and_wait()
521 execute_and_wait(*acs::release(h), context(), m_wait_ctx, context()); in internal_run_and_wait()
606 void run(d2::task_handle&& h) { in run() argument
607 __TBB_ASSERT(h != nullptr, "Attempt to schedule empty task_handle"); in run()
610 …__TBB_ASSERT(&acs::ctx_of(h) == &context(), "Attempt to schedule task_handle into different task_g… in run()
612 spawn(*acs::release(h), context()); in run()
626 task_group_status run_and_wait(d2::task_handle&& h) { in run_and_wait() argument
627 return internal_run_and_wait(std::move(h)); in run_and_wait()
685 void run(d2::task_handle&& h) { in run() argument
686 __TBB_ASSERT(h != nullptr, "Attempt to schedule empty task_handle"); in run()
689 …__TBB_ASSERT(&acs::ctx_of(h) == &context(), "Attempt to schedule task_handle into different task_g… in run()
691 spawn_delegate sd(acs::release(h), context()); in run()