Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
Dtrio_tracer.py59 def task_spawned(self, task: trio.lowlevel.Task):
63 def task_scheduled(self, task: trio.lowlevel.Task):
67 def before_task_step(self, task: trio.lowlevel.Task):
71 def after_task_step(self, task: trio.lowlevel.Task):
75 def task_exited(self, task: trio.lowlevel.Task):
98 def _task_log(self, msg: str, task: trio.lowlevel.Task):
/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 ark::scheduler::Task
/arkcompiler/ets_runtime/ecmascript/taskpool/
Dtask.h35 explicit Task(int32_t id) : id_(id) {}; 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/ets_frontend/arkguard/scripts/
Dgrammar_test.py158 class Task: class
165 def obfuscate_dir(task: Task):
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/
Dtask.h235Task(TaskProperties properties, RunnerCallback runner) : properties_(properties), runner_(std::mov… 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()