Searched refs:hexstrLen (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/foundation/communication/wifi/wifi/utils/src/ |
H A D | wifi_common_util.cpp | 516 void Byte2HexString(const uint8_t* byte, uint8_t bytesLen, char* hexstr, uint8_t hexstrLen) in Byte2HexString() argument 523 if (hexstrLen < bytesLen * 2) { // verify length in Byte2HexString() 525 __func__, bytesLen, hexstrLen); in Byte2HexString() 529 WIFI_LOGI("%{public}s byteLen:%{public}d, hexStrLen:%{public}d", __func__, bytesLen, hexstrLen); in Byte2HexString() 532 if (snprintf_s(hexstr + hexstrIndex, hexstrLen - hexstrIndex, hexstrLen - hexstrIndex - 1, in Byte2HexString() 537 if (hexstrIndex >= hexstrLen) { in Byte2HexString()
|
/ohos5.0/foundation/communication/wifi/wifi/utils/inc/ |
H A D | wifi_common_util.h | 286 void Byte2HexString(const uint8_t* byte, uint8_t bytesLen, char* hexstr, uint8_t hexstrLen);
|