Home
last modified time | relevance | path

Searched refs:needNotify (Results 1 – 9 of 9) sorted by relevance

/base/powermgr/power_manager/utils/setting/include/
Dsetting_provider.h33 … 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/
Dsetting_provider.cpp90 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/
Dres_config.h56 void UpdateSysDefault(const LocaleInfo &localeInfo, bool needNotify);
Dres_locale.h64 static bool UpdateDefault(const LocaleInfo &localeInfo, bool needNotify);
/base/global/resource_management/frameworks/resmgr/include/
Dres_locale.h70 static bool UpdateDefault(const Locale &localeInfo, bool needNotify);
/base/global/resource_management/interfaces/inner_api/include/
Dres_config.h82 EXPORT_FUNC void UpdateSysDefault(const Locale &localeInfo, bool needNotify);
/base/global/resource_management_lite/frameworks/resmgr_lite/src/
Dres_locale.cpp334 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/
Dres_locale.cpp335 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/
Devent_queue.cpp114 bool needNotify = false; in Insert() local
119 needNotify = (event->GetHandleTime() < wakeUpTime_); in Insert()
132 if (needNotify) { in Insert()