Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dhcp/frameworks/native/c_adapter/src/
H A Ddhcp_c_utils.cpp24 static std::map<ErrCode, DhcpErrorCode> g_ErrCodeMap = { variable
36 std::map<ErrCode, DhcpErrorCode>::const_iterator iter = g_ErrCodeMap.find(errCode); in GetCErrorCode()
37 return iter == g_ErrCodeMap.end() ? DHCP_UNKNOWN_ERROR : iter->second; in GetCErrorCode()
/ohos5.0/foundation/communication/wifi/wifi/frameworks/native/c_adapter/src/
H A Dwifi_c_utils.cpp22 static std::map<ErrCode, WifiErrorCode> g_ErrCodeMap = { variable
44 std::map<ErrCode, WifiErrorCode>::const_iterator iter = g_ErrCodeMap.find(errCode); in GetCErrorCode()
45 return iter == g_ErrCodeMap.end() ? ERROR_WIFI_UNKNOWN : iter->second; in GetCErrorCode()