Searched refs:StringToInt (Results 1 – 10 of 10) sorted by relevance
/base/startup/init/ueventd/ |
D | ueventd.c | 233 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/ |
D | utils_unittest.cpp | 56 int ret = StringToInt(str, defaultValue); 59 ret = StringToInt(str, defaultValue);
|
/base/notification/distributed_notification_service/services/ans/src/ |
D | notification_preferences_database.cpp | 898 …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/ |
D | param_wrapper.cpp | 40 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/ |
D | init_utils.h | 67 int StringToInt(const char *str, int defaultValue);
|
/base/startup/syspara_lite/adapter/native/syspara/src/ |
D | parameters.cpp | 104 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/ |
D | param_test_cmds.c | 203 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/ |
D | notification_preferences_database.h | 195 int32_t StringToInt(const std::string &str) const;
|
/base/startup/init/services/utils/ |
D | init_utils.c | 462 int StringToInt(const char *str, int defaultValue) in StringToInt() function
|
/base/startup/init/services/init/ |
D | init_service_manager.c | 925 int isDebug = StringToInt(value, 0); in ProcessConsoleEvent()
|