Home
last modified time | relevance | path

Searched refs:StringToInt (Results 1 – 10 of 10) sorted by relevance

/base/startup/init/ueventd/
Dueventd.c233 uevent->partitionNum = StringToInt(event + strlen("PARTN="), -1); in AddUevent()
235 uevent->major = StringToInt(event + strlen("MAJOR="), -1); in AddUevent()
237 uevent->minor = StringToInt(event + strlen("MINOR="), -1); in AddUevent()
239 uevent->ug.uid = (uid_t)StringToInt(event + strlen("DEVUID="), 0); in AddUevent()
241 uevent->ug.gid = (gid_t)StringToInt(event + strlen("DEVGID="), 0); in AddUevent()
245 uevent->busNum = StringToInt(event + strlen("BUSNUM="), -1); in AddUevent()
247 uevent->devNum = StringToInt(event + strlen("DEVNUM="), -1); in AddUevent()
/base/startup/init/test/unittest/init/
Dutils_unittest.cpp56 int ret = StringToInt(str, defaultValue);
59 ret = StringToInt(str, defaultValue);
/base/notification/distributed_notification_service/services/ans/src/
Dnotification_preferences_database.cpp898 …ionConstant::SlotType slotType = static_cast<NotificationConstant::SlotType>(StringToInt(typeStr)); in ParseSlotFromDisturbeDB()
971 data.push_back(StringToInt(str1)); in StringToVector()
976 int32_t NotificationPreferencesDatabase::StringToInt(const std::string &str) const in StringToInt() function in OHOS::Notification::NotificationPreferencesDatabase
1116 bundleInfo.SetImportance(static_cast<NotificationSlot::NotificationLevel>(StringToInt(value))); in ParseBundleImportance()
1123 bundleInfo.SetIsShowBadge(static_cast<bool>(StringToInt(value))); in ParseBundleShowBadge()
1130 bundleInfo.SetBadgeTotalNum(StringToInt(value)); in ParseBundleBadgeNum()
1137 bundleInfo.SetIsPrivateAllowed(static_cast<bool>(StringToInt(value))); in ParseBundlePrivateAllowed()
1144 bundleInfo.SetEnableNotification(static_cast<bool>(StringToInt(value))); in ParseBundleEnableNotification()
1151 bundleInfo.SetHasPoppedDialog(static_cast<bool>(StringToInt(value))); in ParseBundlePoppedDialog()
1158 bundleInfo.SetBundleUid(StringToInt(value)); in ParseBundleUid()
[all …]
/base/startup/init/interfaces/innerkits/syspara/
Dparam_wrapper.cpp40 bool StringToInt(const std::string& str, T min, T max, T& out) in StringToInt() function
129 if (!value.empty() && StringToInt(value, min, max, result)) { in GetIntParameter()
/base/startup/init/services/include/
Dinit_utils.h67 int StringToInt(const char *str, int defaultValue);
/base/startup/syspara_lite/adapter/native/syspara/src/
Dparameters.cpp104 bool StringToInt(const std::string& str, T min, T max, T& out) in StringToInt() function
187 if (!value.empty() && StringToInt(value, min, max, result)) { in GetIntParameter()
/base/startup/init/test/moduletest/
Dparam_test_cmds.c203 int maxCount = StringToInt(argv[CMD_INDEX], -1); // 2 cmd index in BShellParamCmdWatch()
290 return StringToInt(begin, -1); in CalcValue()
/base/notification/distributed_notification_service/services/ans/include/
Dnotification_preferences_database.h195 int32_t StringToInt(const std::string &str) const;
/base/startup/init/services/utils/
Dinit_utils.c462 int StringToInt(const char *str, int defaultValue) in StringToInt() function
/base/startup/init/services/init/
Dinit_service_manager.c925 int isDebug = StringToInt(value, 0); in ProcessConsoleEvent()