Home
last modified time | relevance | path

Searched defs:Task (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/scheduler/
Dworker_thread.h23 class Task; variable
Dtask.cpp24 Task::Task(PandaVM *vm, ObjectHeader *obj) in Task() function in panda::scheduler::Task
/arkcompiler/ets_runtime/ecmascript/taskpool/
Dtask.h34 explicit Task(int32_t id) : id_(id) {}; in Task() function
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/
Dtask.cpp20 Task::Task(TaskProperties properties, RunnerCallback runner) : properties_(properties), runner_(std… in Task() function in panda::taskmanager::Task
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_phase/include/
Dphase_impl.h82 explicit Task(MIRFunction &func) : function(&func) {} in Task() function
/arkcompiler/runtime_core/static_core/libpandabase/
Dtask_runner.h161 Task(Task &&task) : taskFunc_(std::move(task.taskFunc_)), hasTask_(task.hasTask_) in Task() function
/arkcompiler/runtime_core/static_core/runtime/
Dthread_pool.h249 static void WorkerEntry(ThreadPool<Task, Proc, ProcArg> *threadPool, Proc *proc, int i) in WorkerEntry()