Searched refs:Runner (Results 1 – 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/taskpool/ |
D | runner.cpp | 25 Runner::Runner(uint32_t threadNum) : totalThreadNum_(threadNum) in Runner() function in panda::ecmascript::Runner 29 … std::unique_ptr<std::thread> thread = std::make_unique<std::thread>(&Runner::Run, this, i + 1); in Runner() 38 void Runner::TerminateTask(int32_t id, TaskType type) in TerminateTask() 55 void Runner::TerminateThread() in TerminateThread() 68 void Runner::SetQosPriority([[maybe_unused]] bool isForeground) in SetQosPriority() 83 void Runner::RecordThreadId() in RecordThreadId() 89 void Runner::SetRunTask(uint32_t threadId, Task *task) in SetRunTask() 95 void Runner::Run(uint32_t threadId) in Run()
|
D | runner.h | 33 class Runner { 35 explicit Runner(uint32_t threadNum); 36 ~Runner() = default; 38 NO_COPY_SEMANTIC(Runner); 39 NO_MOVE_SEMANTIC(Runner);
|
D | taskpool.cpp | 31 runner_ = std::make_unique<Runner>(TheMostSuitableThreadNum(threadNum)); in Initialize()
|
D | taskpool.h | 72 std::unique_ptr<Runner> runner_;
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/ |
D | main.py | 32 from runner.runner_base import Runner 47 runners: List[Runner] = []
|
D | readme.md | 99 Runner supports following kinds of test lists:
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | runner.py | 433 class Runner: class 548 class RegressionRunner(Runner): 550 Runner.__init__(self, args, "Regression") 564 class Test262Runner(Runner): 566 Runner.__init__(self, args, "Test262 ark"), 670 Runner.run(self) 756 class TSCRunner(Runner): 758 Runner.__init__(self, args, "TSC") 806 class CompilerRunner(Runner): 808 Runner.__init__(self, args, "Compiler") [all …]
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
D | runner_file_based.py | 40 from runner.runner_base import Runner 115 class RunnerFileBased(Runner): 117 Runner.__init__(self, config, name)
|
D | runner_base.py | 96 class Runner(ABC): class 170 self.conf_kind = Runner.detect_conf(config)
|