Home
last modified time | relevance | path

Searched refs:specialMap_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/resourceschedule/work_scheduler/services/test/src/
H A Dworkschedulerservice_test.cpp1016 workSchedulerService_->specialMap_.clear();
1019 EXPECT_TRUE(workSchedulerService_->specialMap_.empty());
1030 workSchedulerService_->specialMap_.clear();
1033 EXPECT_TRUE(workSchedulerService_->specialMap_.empty());
/ohos5.0/foundation/resourceschedule/work_scheduler/services/native/include/
H A Dwork_scheduler_service.h319 std::map<std::string, uint32_t> specialMap_; variable
/ohos5.0/foundation/resourceschedule/work_scheduler/services/native/src/
H A Dwork_scheduler_service.cpp331 specialMap_.emplace(it["bundleName"].asString(), time); in LoadMinRepeatTimeFromFile()
654 if (specialMap_.count(bundleName) > 0) { in CheckCondition()
655 if (time < specialMap_.at(bundleName)) { in CheckCondition()
656 …WS_HILOGE("fail, set time:%{public}u must more than %{public}u", time, specialMap_.at(bundleName)); in CheckCondition()