Home
last modified time | relevance | path

Searched refs:ifaceRegexs (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/communication/netmanager_ext/test/networksharemanager/unittest/networkshare_manager_test/
H A Dnetworkshare_service_test.cpp173 std::vector<std::string> ifaceRegexs; variable
174 instance_->GetSharableRegexs(SharingIfaceType::SHARING_WIFI, ifaceRegexs);
175 EXPECT_TRUE(ifaceRegexs.empty());
181 std::vector<std::string> ifaceRegexs; variable
183 EXPECT_TRUE(ifaceRegexs.empty());
204 std::vector<std::string> ifaceRegexs; variable
205 instance_->GetSharableRegexs(type, ifaceRegexs);
206 EXPECT_TRUE(ifaceRegexs.empty());
213 std::vector<std::string> ifaceRegexs; variable
214 instance_->GetSharableRegexs(type, ifaceRegexs);
[all …]
H A Dnetworkshare_service_stub_test.h56 int32_t GetSharableRegexs(SharingIfaceType type, std::vector<std::string> &ifaceRegexs) override in GetSharableRegexs() argument
/ohos5.0/foundation/communication/netmanager_ext/services/networksharemanager/src/stub/
H A Dnetworkshare_service_stub.cpp136 std::vector<std::string> ifaceRegexs; in ReplyGetSharableRegexs() local
137 int32_t ret = GetSharableRegexs(shareType, ifaceRegexs); in ReplyGetSharableRegexs()
139 if (!reply.WriteUint32(ifaceRegexs.size())) { in ReplyGetSharableRegexs()
142 for (auto it = ifaceRegexs.begin(); it != ifaceRegexs.end(); ++it) { in ReplyGetSharableRegexs()
/ohos5.0/foundation/communication/netmanager_ext/frameworks/js/napi/sharing/src/
H A Dnetshare_exec.cpp146 std::vector<std::string> ifaceRegexs; in ExecGetSharableRegexes() local
147 …t = DelayedSingleton<NetworkShareClient>::GetInstance()->GetSharableRegexs(ifaceType, ifaceRegexs); in ExecGetSharableRegexes()
153 context->SetIface(ifaceRegexs); in ExecGetSharableRegexes()
/ohos5.0/foundation/communication/netmanager_ext/interfaces/innerkits/netshareclient/include/proxy/
H A Di_networkshare_service.h38 …virtual int32_t GetSharableRegexs(SharingIfaceType type, std::vector<std::string> &ifaceRegexs) = …
H A Dnetworkshare_service_proxy.h36 … int32_t GetSharableRegexs(SharingIfaceType type, std::vector<std::string> &ifaceRegexs) override;
/ohos5.0/foundation/communication/netmanager_ext/frameworks/native/netshareclient/src/proxy/
H A Dnetworkshare_service_proxy.cpp124 …kShareServiceProxy::GetSharableRegexs(SharingIfaceType type, std::vector<std::string> &ifaceRegexs) in GetSharableRegexs() argument
143 ifaceRegexs.push_back(reply.ReadString()); in GetSharableRegexs()
/ohos5.0/foundation/communication/netmanager_ext/frameworks/native/netshareclient/src/
H A Dnetworkshare_client.cpp143 …ShareClient::GetSharableRegexs(const SharingIfaceType &type, std::vector<std::string> &ifaceRegexs) in GetSharableRegexs() argument
151 return proxy->GetSharableRegexs(type, ifaceRegexs); in GetSharableRegexs()
/ohos5.0/foundation/communication/netmanager_ext/interfaces/innerkits/netshareclient/include/
H A Dnetworkshare_client.h116 int32_t GetSharableRegexs(const SharingIfaceType &type, std::vector<std::string> &ifaceRegexs);
/ohos5.0/foundation/communication/netmanager_ext/services/networksharemanager/include/
H A Dnetworkshare_service.h73 … int32_t GetSharableRegexs(SharingIfaceType type, std::vector<std::string> &ifaceRegexs) override;
H A Dnetworkshare_tracker.h154 int32_t GetSharableRegexs(SharingIfaceType type, std::vector<std::string> &ifaceRegexs);
/ohos5.0/foundation/communication/netmanager_ext/services/networksharemanager/src/
H A Dnetworkshare_service.cpp231 …etworkShareService::GetSharableRegexs(SharingIfaceType type, std::vector<std::string> &ifaceRegexs) in GetSharableRegexs() argument
239 return NetworkShareTracker::GetInstance().GetSharableRegexs(type, ifaceRegexs); in GetSharableRegexs()
H A Dnetworkshare_tracker.cpp488 …etworkShareTracker::GetSharableRegexs(SharingIfaceType type, std::vector<std::string> &ifaceRegexs) in GetSharableRegexs() argument
497 ifaceRegexs = configuration_->GetWifiIfaceRegexs(); in GetSharableRegexs()
501 ifaceRegexs = configuration_->GetUsbIfaceRegexs(); in GetSharableRegexs()
505 ifaceRegexs = configuration_->GetBluetoothIfaceRegexs(); in GetSharableRegexs()
/ohos5.0/foundation/communication/netmanager_ext/test/networksharemanager/fuzztest/netshareclient_fuzzer/
H A Dnetshare_client_fuzzer.cpp541 std::vector<std::string> ifaceRegexs; in NetworkShareTrackerFuzzTest() local
549 NetworkShareTracker::GetInstance().GetSharableRegexs(ifaceType, ifaceRegexs); in NetworkShareTrackerFuzzTest()