Home
last modified time | relevance | path

Searched defs:task (Results 1 – 25 of 85) sorted by relevance

1234

/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dexecution.py41 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 …]
Dutils.py144 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
Dresult.py214 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/
Dworker_thread.cpp32 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
Dtask_queue.h271 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/
Dtask_queue.cpp19 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
Dtaskpool.h46 void PostTask(std::unique_ptr<Task> task) const in PostTask()
54 void PostDelayedTask(std::unique_ptr<Task> task, uint64_t delayMilliseconds) const in PostDelayedTask()
Drunner.h51 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/
Dtask.cpp33 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/
Dgc_trigger.cpp87 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 …]
Dgc_queue.cpp41 GCTask *task = queue_.top().get(); in GetTask() local
58 bool GCQueueWithTime::AddTask(PandaUniquePtr<GCTask> task) in AddTask()
Dgc.cpp155 …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 …]
Dgenerational-gc-base.cpp24 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/
Depsilon-g1.cpp79 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/
Depsilon.cpp41 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/
Dcmc-gc-adapter.cpp41 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/
Dgc_workers_task_pool.cpp36 bool GCWorkersTaskPool::AddTask(GCWorkersTask &&task) in AddTask()
49 void GCWorkersTaskPool::RunGCWorkersTask(GCWorkersTask *task, void *workerData) in RunGCWorkersTask()
Dgc_worker.cpp51 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()
Dgc_workers_thread_pool.cpp35 bool GCWorkersProcessor::Process(GCWorkersTask &&task) in Process()
52 bool GCWorkersThreadPool::TryAddTask(GCWorkersTask &&task) in TryAddTask()
/arkcompiler/runtime_core/static_core/runtime/tests/
Dexplicit_gc_test.cpp104 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/
Ddaemon_thread.cpp101 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/
Dtask_queue.h167 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/
Dthread_pool.h175 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/
Dstw-gc.cpp62 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/
Dsweep_js2sts_test.cpp41 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()

1234