Home
last modified time | relevance | path

Searched refs:atItem (Results 1 - 3 of 3) sorted by relevance

/foundation/ability/form_fwk/test/fuzztest/formtimermgr_fuzzer/
H A Dformtimermgr_fuzzer.cpp69 UpdateAtItem atItem; in DoSomethingInterestingWithMyAPI() local
70 formTimerMgr.AddUpdateAtItem(atItem); in DoSomethingInterestingWithMyAPI()
82 formTimerMgr.GetUpdateAtTimer(formId, atItem); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/services/src/
H A Dform_timer_mgr.cpp436 UpdateAtItem atItem; in AddUpdateAtTimer() local
437 atItem.refreshTask = task; in AddUpdateAtTimer()
438 atItem.updateAtTime = task.hour * Constants::MIN_PER_HOUR + task.min; in AddUpdateAtTimer()
439 AddUpdateAtItem(atItem); in AddUpdateAtTimer()
481 void FormTimerMgr::AddUpdateAtItem(const UpdateAtItem &atItem) in AddUpdateAtItem() argument
484 updateAtTimerTasks_.emplace_back(atItem); in AddUpdateAtItem()
489 if (atItem.updateAtTime < firstItem.updateAtTime) { in AddUpdateAtItem()
490 updateAtTimerTasks_.emplace_front(atItem); in AddUpdateAtItem()
497 if (atItem.updateAtTime < itItem->updateAtTime) { in AddUpdateAtItem()
498 updateAtTimerTasks_.insert(itItem, atItem); in AddUpdateAtItem()
[all...]
/foundation/ability/form_fwk/services/include/
H A Dform_timer_mgr.h199 * @param atItem Update at timer item.
201 void AddUpdateAtItem(const UpdateAtItem &atItem);

Completed in 3 milliseconds