Searched refs:srcMacSize (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/ |
H A D | wifi_hdi_util.h | 44 int ConvertMacArr2String(const unsigned char *srcMac, int srcMacSize, char *destMacStr, int strLen);
|
H A D | wifi_hdi_util.c | 1309 int ConvertMacArr2String(const unsigned char *srcMac, int srcMacSize, char *destMacStr, int strLen) in ConvertMacArr2String() argument 1311 …if (srcMac == NULL || destMacStr == NULL || srcMacSize != MAC_UINT_SIZE || strLen <= MAC_STRING_SI… in ConvertMacArr2String()
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/ |
H A D | wifi_hdi_util_test.cpp | 84 int srcMacSize = 6; variable 88 int result = ConvertMacArr2String(srcMac, srcMacSize, destMacStr, strLen); 90 result = ConvertMacArr2String(nullptr, srcMacSize, destMacStr, strLen); 94 result = ConvertMacArr2String(srcMac, srcMacSize, nullptr, strLen); 96 result = ConvertMacArr2String(srcMac, srcMacSize, nullptr, 0); 98 result = ConvertMacArr2String(nullptr, srcMacSize, nullptr, 0); 100 result = ConvertMacArr2String(nullptr, srcMacSize, nullptr, strLen);
|