Home
last modified time | relevance | path

Searched refs:hexChar (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/customization/enterprise_device_management/services/edm_plugin/src/network/rule/
H A Ddomain_chain_rule.cpp142 uint8_t DomainChainRule::CharToHex(const char &hexChar) in CharToHex() argument
144 if (hexChar >= '0' && hexChar <= '9') { in CharToHex()
145 return hexChar - '0'; in CharToHex()
146 } else if (hexChar >= 'a' && hexChar <= 'f') { in CharToHex()
147 return hexChar - 'a' + HEX_TEM_NUM; in CharToHex()
148 } else if (hexChar >= 'A' && hexChar <= 'F') { in CharToHex()
149 return hexChar - 'A' + HEX_TEM_NUM; in CharToHex()
/ohos5.0/base/telephony/sms_mms/frameworks/native/mms/src/utils/
H A Dmms_quoted_printable.cpp71 uint32_t hexChar = 0; in Decode() local
72 if (*input == '=' && sscanf_s(input, "=%02X", &hexChar) >= 1) { in Decode()
73 tempBuffer[outLength] = static_cast<char>(hexChar); in Decode()
/ohos5.0/base/customization/enterprise_device_management/services/edm_plugin/include/network/rule/
H A Ddomain_chain_rule.h37 static uint8_t CharToHex(const char& hexChar);
/ohos5.0/base/telephony/core_service/test/fuzztest/sendsmsmoremode_fuzzer/
H A Dsendsmsmoremode_fuzzer.cpp52 uint8_t hexChar = static_cast<uint8_t>(*data); in SendSmsMoreMode() local
72 telRilSms->ConvertHexCharToInt(hexChar); in SendSmsMoreMode()