Home
last modified time | relevance | path

Searched refs:workStatusVector (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/resourceschedule/work_scheduler/services/native/include/
H A Dwork_policy_manager.h113 … void OnConditionReady(std::shared_ptr<std::vector<std::shared_ptr<WorkStatus>>> workStatusVector);
283 … void AddToReadyQueue(std::shared_ptr<std::vector<std::shared_ptr<WorkStatus>>> workStatusVector);
H A Dwork_queue.h52 void Push(std::shared_ptr<std::vector<std::shared_ptr<WorkStatus>>> workStatusVector);
H A Dwork_scheduler_service.h179 … void OnConditionReady(std::shared_ptr<std::vector<std::shared_ptr<WorkStatus>>> workStatusVector);
/ohos5.0/foundation/resourceschedule/work_scheduler/services/native/src/
H A Dwork_policy_manager.cpp273 …id WorkPolicyManager::OnConditionReady(shared_ptr<vector<shared_ptr<WorkStatus>>> workStatusVector) in OnConditionReady() argument
276 if (workStatusVector == nullptr) { in OnConditionReady()
279 AddToReadyQueue(workStatusVector); in OnConditionReady()
283 void WorkPolicyManager::AddToReadyQueue(shared_ptr<vector<shared_ptr<WorkStatus>>> workStatusVector) in AddToReadyQueue() argument
285 conditionReadyQueue_->Push(workStatusVector); in AddToReadyQueue()
H A Dwork_queue.cpp102 void WorkQueue::Push(shared_ptr<vector<shared_ptr<WorkStatus>>> workStatusVector) in Push() argument
104 for (auto it : *workStatusVector) { in Push()
H A Dwork_scheduler_service.cpp825 …WorkSchedulerService::OnConditionReady(shared_ptr<vector<shared_ptr<WorkStatus>>> workStatusVector) in OnConditionReady() argument
827 workPolicyManager_->OnConditionReady(workStatusVector); in OnConditionReady()