Home
last modified time | relevance | path

Searched refs:maxCap (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/telephony/core_service/utils/common/src/
H A Dtelephony_config.cpp45 std::string maxCap = system::GetParameter(MODEM_CAP, NULL_STRING); in IsCapabilitySupport() local
47 if (ConvertCharToInt(bcdValue, maxCap, bcdIndex) != VALID_VALUE) { in IsCapabilitySupport()
56 int32_t TelephonyConfig::ConvertCharToInt(uint32_t &retValue, const std::string &maxCap, uint32_t i… in ConvertCharToInt() argument
61 if (maxCap.length() > static_cast<size_t>(VALID_VALUE_LENGTH)) { in ConvertCharToInt()
65 size_t cpyLen = maxCap.length() + 1; in ConvertCharToInt()
66 if (strcpy_s(content, cpyLen, maxCap.c_str()) != EOK) { in ConvertCharToInt()
/ohos5.0/base/telephony/core_service/utils/common/include/
H A Dtelephony_config.h33 int32_t ConvertCharToInt(uint32_t &retValue, const std::string &maxCap, uint32_t index);