Home
last modified time | relevance | path

Searched refs:OnPostTask (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/base/thread/
H A Dtask_executor.h139 return OnPostTask(std::move(task), type, delayTime, name, priorityType);
289 virtual bool OnPostTask(Task&& task, TaskType type, uint32_t delayTime, const std::string& name,
310 … result = OnPostTask(Task(task), type, 0, name, priorityType) && task.WaitUntilComplete(timeoutMs);
315 … return OnPostTask(Task(task), type, 0, name, priorityType) && task.WaitUntilComplete(timeoutMs);
/ohos5.0/foundation/arkui/ace_engine/test/mock/base/
H A Dmock_task_executor.h30 bool OnPostTask(Task&& task, TaskType type, uint32_t delayTime, const std::string& name,
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/common/task/
H A Dthread_test.cpp293 auto result = taskExecutorImpl_->OnPostTask(callBack, taskType, 1, "ArkUITask");
331 taskExecutorImpl_->OnPostTask(callBack, TaskExecutor::TaskType::BACKGROUND, 2, "ArkUITask");
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/
H A Dtask_executor_impl.h68 bool OnPostTask(Task&& task, TaskType type, uint32_t delayTime, const std::string& name,
H A Dtask_executor_impl.cpp172 bool TaskExecutorImpl::OnPostTask( in OnPostTask() function in OHOS::Ace::TaskExecutorImpl
/ohos5.0/foundation/ability/ability_runtime/frameworks/simulator/ability_simulator/src/
H A Dsimulator.cpp87 void OnPostTask(std::function<void()> &&task);
168 void DebuggerTask::OnPostTask(std::function<void()> &&task) in OnPostTask() function in OHOS::AbilityRuntime::__anon76aee7e70110::DebuggerTask
694 debuggerTask_.OnPostTask(std::move(arg)); in OnInit()