Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/net_helper/
H A Dmac_address.cpp32 static constexpr char INVALID_MAC[MAC_STRING_LENGTH + 1] = "00:00:00:00:00:00"; /* Indicates an inv…
43 if (mac.length() != MAC_STRING_LENGTH) { in IsValidMac()
54 for (size_t i = 0; i < MAC_STRING_LENGTH; i++) { in IsValidMac()
82 char mac[MAC_STRING_LENGTH + 1]; in Create()
H A Dmac_address.h33 constexpr size_t MAC_STRING_LENGTH = 6 * 2 + (6 - 1); /* length of the string of mac address */ variable