Home
last modified time | relevance | path

Searched refs:preferCellular (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include/proxy/
H A Di_net_conn_service.h103 virtual int32_t IsPreferCellularUrl(const std::string& url, bool& preferCellular) = 0;
H A Dnet_conn_service_proxy.h86 int32_t IsPreferCellularUrl(const std::string& url, bool& preferCellular) override;
/ohos5.0/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_manager_test/
H A Dnet_conn_service_stub_test.h277 int32_t IsPreferCellularUrl(const std::string &url, bool &preferCellular) override in IsPreferCellularUrl() argument
H A Dnet_conn_client_test.cpp1347 bool preferCellular = false; variable
1348 NetConnClient::GetInstance().IsPreferCellularUrl(url, preferCellular);
1349 EXPECT_FALSE(preferCellular);
H A Dnet_conn_service_test.cpp962 bool preferCellular = false; variable
963 ret = NetConnService::GetInstance()->IsPreferCellularUrl(url, preferCellular);
/ohos5.0/foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include/
H A Dnet_conn_client.h427 int32_t IsPreferCellularUrl(const std::string& url, bool& preferCellular);
/ohos5.0/foundation/communication/netmanager_base/services/netconnmanager/src/stub/
H A Dnet_conn_service_stub.cpp1467 bool preferCellular = false; in OnIsPreferCellularUrl() local
1468 int32_t ret = IsPreferCellularUrl(url, preferCellular); in OnIsPreferCellularUrl()
1472 if (!reply.WriteBool(preferCellular)) { in OnIsPreferCellularUrl()
/ohos5.0/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/
H A Dnet_conn_client.cpp846 int32_t NetConnClient::IsPreferCellularUrl(const std::string& url, bool& preferCellular) in IsPreferCellularUrl() argument
853 return proxy->IsPreferCellularUrl(url, preferCellular); in IsPreferCellularUrl()
/ohos5.0/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/proxy/
H A Dnet_conn_service_proxy.cpp1556 int32_t NetConnServiceProxy::IsPreferCellularUrl(const std::string& url, bool& preferCellular) in IsPreferCellularUrl() argument
1574 if (!reply.ReadBool(preferCellular)) { in IsPreferCellularUrl()
/ohos5.0/foundation/communication/netmanager_base/services/netconnmanager/include/
H A Dnet_conn_service.h356 int32_t IsPreferCellularUrl(const std::string& url, bool& preferCellular) override;
/ohos5.0/foundation/communication/netmanager_base/services/netconnmanager/src/
H A Dnet_conn_service.cpp2417 int32_t NetConnService::IsPreferCellularUrl(const std::string& url, bool& preferCellular) in IsPreferCellularUrl() argument
2420 preferCellular = std::any_of(preferredUrlList.begin(), preferredUrlList.end(), in IsPreferCellularUrl()