Home
last modified time | relevance | path

Searched refs:DhcpClientCallbackProxy (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/communication/dhcp/services/dhcp_client/include/
H A Ddhcp_client_callback_proxy.h32 class DhcpClientCallbackProxy : public IDhcpClientCallBack {
35 explicit DhcpClientCallbackProxy(SvcIdentity *sid);
37 virtual ~DhcpClientCallbackProxy();
39 class DhcpClientCallbackProxy : public IRemoteProxy<IDhcpClientCallBack> {
41 explicit DhcpClientCallbackProxy(const sptr<IRemoteObject> &impl);
42 virtual ~DhcpClientCallbackProxy();
55 static inline BrokerDelegator<DhcpClientCallbackProxy> g_delegator;
/ohos5.0/foundation/communication/dhcp/services/dhcp_client/src/
H A Ddhcp_client_callback_proxy.cpp23 DhcpClientCallbackProxy::DhcpClientCallbackProxy(const sptr<IRemoteObject> &impl) : IRemoteProxy<ID… in DhcpClientCallbackProxy() function in OHOS::DHCP::DhcpClientCallbackProxy
26 DhcpClientCallbackProxy::~DhcpClientCallbackProxy() in ~DhcpClientCallbackProxy()
29 void DhcpClientCallbackProxy::OnIpSuccessChanged(int status, const std::string& ifname, DhcpResult&… in OnIpSuccessChanged()
80 void DhcpClientCallbackProxy::OnIpFailChanged(int status, const std::string& ifname, const std::str… in OnIpFailChanged()
109 void DhcpClientCallbackProxy::OnDhcpOfferReport(int status, const std::string& ifname, DhcpResult& … in OnDhcpOfferReport()
H A Ddhcp_client_callback_proxy_lite.cpp26 DhcpClientCallbackProxy::DhcpClientCallbackProxy(SvcIdentity *sid) : sid_(*sid) in DhcpClientCallbackProxy() function in OHOS::DHCP::DhcpClientCallbackProxy
30 DhcpClientCallbackProxy::~DhcpClientCallbackProxy() in ~DhcpClientCallbackProxy()
37 void DhcpClientCallbackProxy::OnIpSuccessChanged(int status, const std::string& ifname, DhcpResult&… in OnIpSuccessChanged()
87 void DhcpClientCallbackProxy::OnIpFailChanged(int status, const std::string& ifname, const std::str… in OnIpFailChanged()
H A Ddhcp_client_stub_lite.cpp103 … std::shared_ptr<IDhcpClientCallBack> callback_ = std::make_shared<DhcpClientCallbackProxy>(&sid); in OnRegisterCallBack()
H A Ddhcp_client_stub.cpp122 callback_ = new (std::nothrow) DhcpClientCallbackProxy(remote); in OnRegisterCallBack()