| /arkcompiler/ets_frontend/test/scripts/sdk_test/ |
| D | execution.py | 41 def prepare_full_task(task, test_name): argument 51 def full_compile(task, is_debug): argument 65 def compile_full_import_ordinary_ohpm_package(task, is_debug): argument 92 def compile_full_import_special_ohpm_package(task, is_debug): argument 121 def compile_full_import_static_library(task, is_debug): argument 146 def compile_full_import_share_library(task, is_debug): argument 171 def compile_full_import_so_file(task, is_debug): argument 189 def compile_full_has_syntax_error_in_js(task, is_debug): argument 209 def compile_full_use_normalize_ohmurl(task, is_debug): argument 232 def compile_full_module_name_is_inconsistent(task, is_debug): argument [all …]
|
| D | utils.py | 144 def move_picture(task, image_name): argument 160 def get_running_screenshot(task, image_name, is_debug, module=''): argument 233 def verify_runtime(task, picture_name): argument 290 def get_module_name(task, module=''): argument 302 def get_module_path(task, module=''): argument 314 def get_output_path_unsigned(task, module=''): argument 323 def get_output_path_signed(task, module=''): argument 332 def get_output_path_har(task, module=''): argument 341 def get_output_path(task, module, output_type): argument
|
| D | result.py | 214 def is_task_passed(task): argument 330 def get_full_build_test_result(task, task_result_data, task_time_size_data): argument 351 def get_incremental_build_test_result(task, task_result_data, task_time_size_data): argument 369 def get_bytecode_har_build_test_result(task, task_result_data, task_time_size_data): argument 387 def get_external_build_test_result(task, task_result_data, task_time_size_data): argument 405 def get_preview_build_test_result(task, task_result_data): argument 418 def get_other_test_result(task, task_result_data): argument
|
| /arkcompiler/runtime_core/static_core/libpandabase/taskmanager/ |
| D | worker_thread.cpp | 32 void WorkerThread::AddForegroundTask(TaskPtr task) in AddForegroundTask() 37 void WorkerThread::AddBackgroundTask(TaskPtr task) in AddBackgroundTask() 59 TaskPtr task; in PopTask() local 69 TaskPtr task; in PopForegroundTask() local 76 TaskPtr task; in PopBackgroundTask() local 98 auto task = PopTask(); in ExecuteTasksFromLocalQueue() local
|
| D | task_queue.h | 271 TaskPtr task = PopTask(); in ExecuteTask() local 282 TaskPtr task = PopForegroundTask(); in ExecuteForegroundTask() local 293 TaskPtr task = PopBackgroundTask(); in ExecuteBackgroundTask() local 331 TaskPtr task = nullptr; in PopTask() local 342 TaskPtr task = nullptr; in PopForegroundTask() local 350 TaskPtr task = nullptr; in PopBackgroundTask() local 361 TaskPtr task; in PopTasksToWorker() local 380 TaskPtr task; in PopForegroundTasksToHelperThread() local 394 TaskPtr task; in PopBackgroundTasksToHelperThread() local 444 auto task = Task::Create(std::move(runner), this, OnForegroundTaskDestructionCallback); in AddForegroundTaskImpl() local [all …]
|
| /arkcompiler/ets_runtime/common_components/taskpool/ |
| D | task_queue.cpp | 19 void TaskQueue::PostTask(std::unique_ptr<Task> task) in PostTask() 27 void TaskQueue::PostDelayedTask(std::unique_ptr<Task> task, uint64_t delayMilliseconds) in PostDelayedTask() 42 std::unique_ptr<Task> task = std::move(tasks_.front()); in PopTask() local 57 for (auto &task : tasks_) { in TerminateTask() local 87 for (auto &task : tasks_) { in ForEachTask() local
|
| D | taskpool.h | 46 void PostTask(std::unique_ptr<Task> task) const in PostTask() 54 void PostDelayedTask(std::unique_ptr<Task> task, uint64_t delayMilliseconds) const in PostDelayedTask()
|
| D | runner.h | 51 void PostTask(std::unique_ptr<Task> task) in PostTask() 56 void PostDelayedTask(std::unique_ptr<Task> task, uint64_t delayMilliseconds) in PostDelayedTask()
|
| /arkcompiler/runtime_core/static_core/runtime/scheduler/ |
| D | task.cpp | 33 auto *task = allocator->New<Task>(vm, obj); in Create() local 64 auto task = Task::GetCurrent(); in SuspendCurrent() local 73 auto task = Task::GetCurrent(); in EndCurrent() local
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
| D | gc_trigger.cpp | 87 void GCTriggerHeap::ComputeNewTargetFootprint(const GCTask &task, size_t heapSizeBeforeGc, size_t h… in ComputeNewTargetFootprint() 133 …auto task = MakePandaUnique<GCTask>(GCTaskCause::HEAP_USAGE_THRESHOLD_CAUSE, time::GetCurrentTimeI… in TriggerGcIfNeeded() local 249 void GCTriggerHeap::GCStarted([[maybe_unused]] const GCTask &task, [[maybe_unused]] size_t heapSize) in GCStarted() 254 void GCTriggerHeap::GCFinished(const GCTask &task, size_t heapSizeBeforeGc, size_t heapSize) in GCFinished() 272 …auto task = MakePandaUnique<GCTask>(GCTaskCause::HEAP_USAGE_THRESHOLD_CAUSE, time::GetCurrentTimeI… in TriggerGcIfNeeded() local 278 void GCTriggerDebug::GCStarted([[maybe_unused]] const GCTask &task, [[maybe_unused]] size_t heapSiz… in GCStarted() 283 void GCTriggerDebug::GCFinished([[maybe_unused]] const GCTask &task, [[maybe_unused]] size_t heapSi… in GCFinished() 295 void GCTriggerHeapOccupancy::GCStarted([[maybe_unused]] const GCTask &task, [[maybe_unused]] size_t… in GCStarted() 300 void GCTriggerHeapOccupancy::GCFinished([[maybe_unused]] const GCTask &task, [[maybe_unused]] size_… in GCFinished() 315 …auto task = MakePandaUnique<GCTask>(GCTaskCause::HEAP_USAGE_THRESHOLD_CAUSE, time::GetCurrentTimeI… in TriggerGcIfNeeded() local [all …]
|
| D | gc_queue.cpp | 41 GCTask *task = queue_.top().get(); in GetTask() local 58 bool GCQueueWithTime::AddTask(PandaUniquePtr<GCTask> task) in AddTask()
|
| D | gc.cpp | 155 …auto task = MakePandaUnique<GCTask>(GCTaskCause::NATIVE_ALLOC_CAUSE, time::GetCurrentTimeInNanos()… in TriggerGCForNative() local 311 bool GC::GCPhasesPreparation(const GCTask &task) in GCPhasesPreparation() 345 void GC::GCPhasesFinish(const GCTask &task) in GCPhasesFinish() 371 void GC::RunPhases(GCTask &task) in RunPhases() 490 void GC::ProcessReferences(GCPhase gcPhase, const GCTask &task, const ReferenceClearPredicateT &pre… in ProcessReferences() 644 auto task = MakePandaUnique<PostForkGCTask>(GCTaskCause::STARTUP_COMPLETE_CAUSE, in PreStartup() local 652 bool GC::AddGCTask(bool isManaged, PandaUniquePtr<GCTask> task) in AddGCTask() 760 bool GC::WaitForGC(GCTask task) in WaitForGC() 792 bool GC::WaitForGCInManaged(const GCTask &task) in WaitForGCInManaged() 853 void GC::WaitForGCOnPygoteFork(const GCTask &task) in WaitForGCOnPygoteFork() [all …]
|
| D | generational-gc-base.cpp | 24 bool GenerationalGC<LanguageConfig>::ShouldRunTenuredGC(const GCTask &task) in ShouldRunTenuredGC() 103 bool GenerationalGC<LanguageConfig>::Trigger(PandaUniquePtr<GCTask> task) in Trigger()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/epsilon-g1/ |
| D | epsilon-g1.cpp | 79 void EpsilonG1GC<LanguageConfig>::RunPhasesImpl([[maybe_unused]] GCTask &task) in RunPhasesImpl() 86 bool EpsilonG1GC<LanguageConfig>::WaitForGC([[maybe_unused]] GCTask task) in WaitForGC() 97 bool EpsilonG1GC<LanguageConfig>::Trigger([[maybe_unused]] PandaUniquePtr<GCTask> task) in Trigger()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/epsilon/ |
| D | epsilon.cpp | 41 void EpsilonGC<LanguageConfig>::RunPhasesImpl([[maybe_unused]] GCTask &task) in RunPhasesImpl() 49 bool EpsilonGC<LanguageConfig>::WaitForGC([[maybe_unused]] GCTask task) in WaitForGC() 66 bool EpsilonGC<LanguageConfig>::Trigger([[maybe_unused]] PandaUniquePtr<GCTask> task) in Trigger()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/cmc-gc-adapter/ |
| D | cmc-gc-adapter.cpp | 41 void CMCGCAdapter<LanguageConfig>::RunPhasesImpl([[maybe_unused]] GCTask &task) in RunPhasesImpl() 49 bool CMCGCAdapter<LanguageConfig>::WaitForGC([[maybe_unused]] GCTask task) in WaitForGC() 66 bool CMCGCAdapter<LanguageConfig>::Trigger([[maybe_unused]] PandaUniquePtr<GCTask> task) in Trigger()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/workers/ |
| D | gc_workers_task_pool.cpp | 36 bool GCWorkersTaskPool::AddTask(GCWorkersTask &&task) in AddTask() 49 void GCWorkersTaskPool::RunGCWorkersTask(GCWorkersTask *task, void *workerData) in RunGCWorkersTask()
|
| D | gc_worker.cpp | 51 auto task = gcWorker->GetTask(); in GCThreadLoop() local 136 bool GCWorker::AddTask(PandaUniquePtr<GCTask> task) in AddTask() 162 void GCWorker::RunGC(PandaUniquePtr<GCTask> task) in RunGC()
|
| D | gc_workers_thread_pool.cpp | 35 bool GCWorkersProcessor::Process(GCWorkersTask &&task) in Process() 52 bool GCWorkersThreadPool::TryAddTask(GCWorkersTask &&task) in TryAddTask()
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | explicit_gc_test.cpp | 104 GCTask task(GCTaskCause::EXPLICIT_CAUSE); in TEST_F() local 120 GCTask task(GCTaskCause::HEAP_USAGE_THRESHOLD_CAUSE); in TEST_F() local 130 GCTask task(GCTaskCause::EXPLICIT_CAUSE); in TEST_F() local 158 GCTask task(GCTaskCause::EXPLICIT_CAUSE); in TEST_F() local
|
| /arkcompiler/ets_runtime/ecmascript/daemon/ |
| D | daemon_thread.cpp | 101 bool DaemonThread::CheckAndPostTask(DaemonTask task) in CheckAndPostTask() 137 DaemonTask task = PopTask(); in Run() local 174 DaemonTask task = tasks_.front(); in PopTask() local
|
| /arkcompiler/ets_runtime/common_components/heap/collector/ |
| D | task_queue.h | 167 void Push(const Type& task) in Push() 227 uint64_t EnqueueSync(Type& task, GCTaskFilter& filter) in EnqueueSync() 246 void EnqueueAsync(const Type& task) in EnqueueAsync() 269 Type task = asyncTaskQueue_.Pop(); in Dequeue() local 285 Type task = Dequeue(); in DrainTaskQueue() local
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | thread_pool.h | 175 Task task; in Help() local 195 bool TryPutTask(Task &&task) in TryPutTask() 212 bool PutTask(Task &&task) in PutTask() 260 Task task; in WorkerEntry() local
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/stw-gc/ |
| D | stw-gc.cpp | 62 void StwGC<LanguageConfig>::RunPhasesImpl(GCTask &task) in RunPhasesImpl() 78 void StwGC<LanguageConfig>::Mark(const GCTask &task) in Mark() 191 bool StwGC<LanguageConfig>::Trigger(PandaUniquePtr<GCTask> task) in Trigger() 197 void StwGC<LanguageConfig>::WorkerTaskProcessing(GCWorkersTask *task, [[maybe_unused]] void *worker… in WorkerTaskProcessing()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/xgc/ |
| D | sweep_js2sts_test.cpp | 41 void GCStarted([[maybe_unused]] const GCTask &task, [[maybe_unused]] size_t heapSize) override in GCStarted() 52 void GCFinished(const GCTask &task, [[maybe_unused]] size_t heapSizeBeforeGc, in GCFinished()
|