Home
last modified time | relevance | path

Searched refs:m_mapClientCallBack (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/communication/dhcp/test/unittest/services/dhcp_client/
H A Ddhcp_client_service_impl_test.cpp123 dhcpClientImpl->m_mapClientCallBack.emplace(std::make_pair("wlan0", nullptr));
127 dhcpClientImpl->m_mapClientCallBack.emplace(std::make_pair("wlan0", nullptr));
131 dhcpClientImpl->m_mapClientCallBack.emplace(std::make_pair("wlan0", nullptr));
133 dhcpClientImpl->m_mapClientCallBack.clear();
143 dhcpClientImpl->m_mapClientCallBack.emplace(std::make_pair("wlan0", nullptr));
145 dhcpClientImpl->m_mapClientCallBack.clear();
162 dhcpClientImpl->m_mapClientCallBack.emplace(std::make_pair("wlan0", nullptr));
164 dhcpClientImpl->m_mapClientCallBack.clear();
183 dhcpClientImpl->m_mapClientCallBack.clear();
211 dhcpClientImpl->m_mapClientCallBack.clear();
[all …]
/ohos5.0/foundation/communication/dhcp/services/dhcp_client/src/
H A Ddhcp_client_service_impl.cpp95 m_mapClientCallBack.clear(); in DhcpClientServiceImpl()
220 auto iter = m_mapClientCallBack.find(ifname); in RegisterDhcpClientCallBack()
221 if (iter != m_mapClientCallBack.end()) { in RegisterDhcpClientCallBack()
351 if (iter != m_mapClientCallBack.end()) { in StopDhcpClient()
352 m_mapClientCallBack.erase(iter); in StopDhcpClient()
411 if (iter == m_mapClientCallBack.end()) { in DhcpIpv4ResultSuccess()
446 if (iter == m_mapClientCallBack.end()) { in DhcpOfferResultSuccess()
478 if (iter == m_mapClientCallBack.end()) { in DhcpIpv4ResultFail()
508 if (iter == m_mapClientCallBack.end()) { in DhcpIpv4ResultTimeOut()
530 if (iter == m_mapClientCallBack.end()) { in DhcpIpv4ResultExpired()
[all …]
/ohos5.0/foundation/communication/dhcp/services/dhcp_client/include/
H A Ddhcp_client_service_impl.h98 std::map<std::string, std::shared_ptr<IDhcpClientCallBack>> m_mapClientCallBack; variable
100 std::map<std::string, sptr<IDhcpClientCallBack>> m_mapClientCallBack; variable