Home
last modified time | relevance | path

Searched refs:CharToHex (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/network/rule/
H A Ddomain_chain_rule_test.cpp106 uint8_t result = DomainChainRule::CharToHex('1', '0');
109 result = DomainChainRule::CharToHex('2', '2');
112 result = DomainChainRule::CharToHex('3', '9');
124 uint8_t result = DomainChainRule::CharToHex('1');
128 result = DomainChainRule::CharToHex('a');
132 result = DomainChainRule::CharToHex('F');
/ohos5.0/base/customization/enterprise_device_management/services/edm_plugin/src/network/rule/
H A Ddomain_chain_rule.cpp115 uint8_t segmentSize = CharToHex(firstChar, secondChar); in FormatDataToDomain()
119 uint8_t segmentChar = CharToHex(firstChar, secondChar); in FormatDataToDomain()
135 uint8_t DomainChainRule::CharToHex(const char &first, const char &second) in CharToHex() function in OHOS::EDM::IPTABLES::DomainChainRule
137 uint8_t high = CharToHex(first); in CharToHex()
138 uint8_t low = CharToHex(second); in CharToHex()
142 uint8_t DomainChainRule::CharToHex(const char &hexChar) in CharToHex() function in OHOS::EDM::IPTABLES::DomainChainRule
/ohos5.0/base/security/dlp_permission_service/frameworks/common/src/
H A Dhex_string.cpp53 static uint8_t CharToHex(char c) in CharToHex() function
78 uint8_t high = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH]); in HexStringToByte()
79 uint8_t low = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1]); in HexStringToByte()
/ohos5.0/base/security/device_auth/common_lib/impl/src/
H A Dstring_util.c53 static uint8_t CharToHex(char c) in CharToHex() function
78 uint8_t high = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH]); in HexStringToByte()
79 uint8_t low = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1]); in HexStringToByte()
/ohos5.0/base/customization/enterprise_device_management/services/edm_plugin/include/network/rule/
H A Ddomain_chain_rule.h36 static uint8_t CharToHex(const char& first, const char& second);
37 static uint8_t CharToHex(const char& hexChar);
/ohos5.0/commonlibrary/ets_utils/js_util_module/util/
H A Djs_uuid.cpp28 unsigned char CharToHex(char in) in CharToHex() function
96 temp = CharToHex(input[0]); in ConvertBits()
99 temp += CharToHex(input[0]); in ConvertBits()
H A Djs_uuid.h67 unsigned char CharToHex(char in);
/ohos5.0/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/
H A Dcert_manager_auth_mgr.c44 static uint8_t CharToHex(char c) in CharToHex() function
81 uint8_t high = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH]); in HexStringToByte()
82 uint8_t low = CharToHex(hexStr[i * BYTE_TO_HEX_OPER_LENGTH + 1]); in HexStringToByte()