Home
last modified time | relevance | path

Searched refs:runTask (Results 1 – 4 of 4) sorted by relevance

/third_party/FreeBSD/sys/compat/linuxkpi/common/src/
Dlinux_completion.c102 LosTaskCB *runTask = OsCurrTaskGet(); in linux_wait_for_completion() local
116 if (runTask->taskStatus & OS_TASK_FLAG_SYSTEM_TASK) { in linux_wait_for_completion()
129 (void)runTask->ops->wait(runTask, &x->comList, LOS_WAIT_FOREVER); in linux_wait_for_completion()
151 LosTaskCB *runTask = OsCurrTaskGet(); in linux_wait_for_completion_timeout() local
153 if (runTask->taskStatus & OS_TASK_FLAG_SYSTEM_TASK) { in linux_wait_for_completion_timeout()
173 ret = runTask->ops->wait(runTask, &x->comList, timeout); in linux_wait_for_completion_timeout()
/third_party/googletest/googletest/include/gtest/hwext/
Dgtest-multithread.h55 uint runTask(unsigned thread_num, PF func, std::string testsuite, std::string testcase);
102 …_test.runTask(_test.m_threadNum, hook, this->test_info_->test_case_name(), this->test_info_->name(…
/third_party/node/doc/api/
Dasync_context.md647 this.runTask(task, callback);
655 // In case of success: Call the callback that was passed to `runTask`,
665 // `runTask` with the error.
680 runTask(task, callback) {
735 this.runTask(task, callback);
743 // In case of success: Call the callback that was passed to `runTask`,
753 // `runTask` with the error.
768 runTask(task, callback) {
804 pool.runTask({ a: 42, b: 100 }, (err, result) => {
820 pool.runTask({ a: 42, b: 100 }, (err, result) => {
/third_party/googletest/googletest/src/hwext/
Dgtest-multithread.cpp59 …unsigned MultiThreadTest::runTask(unsigned thread_num, PF func, std::string testsuite, std::string… in runTask() function in testing::mt::MultiThreadTest