Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/netmanager_ext/frameworks/native/netvpnclient/src/
H A Dnetworkvpn_client.cpp251 if (networkVpnService_ != nullptr) { in GetProxy()
252 return networkVpnService_; in GetProxy()
273 networkVpnService_ = iface_cast<INetworkVpnService>(remote); in GetProxy()
274 if (networkVpnService_ == nullptr) { in GetProxy()
278 return networkVpnService_; in GetProxy()
307 if (networkVpnService_ == nullptr) { in OnRemoteDied()
311 sptr<IRemoteObject> local = networkVpnService_->AsObject(); in OnRemoteDied()
317 networkVpnService_ = nullptr; in OnRemoteDied()
/ohos5.0/foundation/communication/netmanager_ext/test/vpnmanager/unittest/vpn_manager_test/
H A Dnetworkvpn_client_test.cpp175 networkVpnClient_.networkVpnService_ = iface_cast<INetworkVpnService>(remote);
176 EXPECT_EQ(networkVpnClient_.GetProxy(), networkVpnClient_.networkVpnService_);
177 networkVpnClient_.networkVpnService_ = nullptr;
187 networkVpnClient_.networkVpnService_ = nullptr;
189 networkVpnClient_.networkVpnService_ = iface_cast<INetworkVpnService>(remote);
191 EXPECT_EQ(networkVpnClient_.networkVpnService_, nullptr);
/ohos5.0/foundation/communication/netmanager_ext/interfaces/innerkits/netvpnclient/include/
H A Dnetworkvpn_client.h208 sptr<INetworkVpnService> networkVpnService_ = nullptr; variable