Searched refs:needNotify (Results 1 – 9 of 9) sorted by relevance
/base/powermgr/power_manager/utils/setting/include/ |
D | setting_provider.h | 33 … ErrCode PutStringValue(const std::string& key, const std::string& value, bool needNotify = true); 34 ErrCode PutIntValue(const std::string& key, int32_t value, bool needNotify = true); 35 ErrCode PutLongValue(const std::string& key, int64_t value, bool needNotify = true); 36 ErrCode PutBoolValue(const std::string& key, bool value, bool needNotify = true);
|
/base/powermgr/power_manager/utils/setting/src/ |
D | setting_provider.cpp | 90 ErrCode SettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 92 return PutStringValue(key, std::to_string(value), needNotify); in PutIntValue() 95 ErrCode SettingProvider::PutLongValue(const std::string& key, int64_t value, bool needNotify) in PutLongValue() argument 97 return PutStringValue(key, std::to_string(value), needNotify); in PutLongValue() 100 ErrCode SettingProvider::PutBoolValue(const std::string& key, bool value, bool needNotify) in PutBoolValue() argument 103 return PutStringValue(key, valueStr, needNotify); in PutBoolValue() 219 … SettingProvider::PutStringValue(const std::string& key, const std::string& value, bool needNotify) in PutStringValue() argument 239 if (needNotify) { in PutStringValue()
|
/base/global/resource_management_lite/frameworks/resmgr_lite/include/ |
D | res_config.h | 56 void UpdateSysDefault(const LocaleInfo &localeInfo, bool needNotify);
|
D | res_locale.h | 64 static bool UpdateDefault(const LocaleInfo &localeInfo, bool needNotify);
|
/base/global/resource_management/frameworks/resmgr/include/ |
D | res_locale.h | 70 static bool UpdateDefault(const Locale &localeInfo, bool needNotify);
|
/base/global/resource_management/interfaces/inner_api/include/ |
D | res_config.h | 82 EXPORT_FUNC void UpdateSysDefault(const Locale &localeInfo, bool needNotify);
|
/base/global/resource_management_lite/frameworks/resmgr_lite/src/ |
D | res_locale.cpp | 334 bool ResLocale::UpdateDefault(const LocaleInfo &localeInfo, bool needNotify) in UpdateDefault() argument 420 void UpdateSysDefault(const LocaleInfo &localeInfo, bool needNotify) in UpdateSysDefault() argument 422 ResLocale::UpdateDefault(localeInfo, needNotify); in UpdateSysDefault()
|
/base/global/resource_management/frameworks/resmgr/src/ |
D | res_locale.cpp | 335 bool ResLocale::UpdateDefault(const Locale &localeInfo, bool needNotify) in UpdateDefault() argument 429 void UpdateSysDefault(const Locale &localeInfo, bool needNotify) in UpdateSysDefault() argument 431 ResLocale::UpdateDefault(localeInfo, needNotify); in UpdateSysDefault()
|
/base/notification/eventhandler/frameworks/eventhandler/src/ |
D | event_queue.cpp | 114 bool needNotify = false; in Insert() local 119 needNotify = (event->GetHandleTime() < wakeUpTime_); in Insert() 132 if (needNotify) { in Insert()
|