Home
last modified time | relevance | path

Searched defs:Task (Results 1 – 9 of 9) 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/runtime_core/static_core/libpandabase/taskmanager/
Dtask.h77 Task(RunnerCallback runner, TaskQueueInterface *queue, OnDestructionCallback callback) in Task() function
/arkcompiler/ets_runtime/common_components/taskpool/
Dtask.h37 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/runtime/
Dthread_pool.h249 static void WorkerEntry(ThreadPool<Task, Proc, ProcArg> *threadPool, Proc *proc, int i) in WorkerEntry()
/arkcompiler/jsvm/test/unittest/
Dtest_jsvm.cpp98 class Task { class