/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_ap/ |
H A D | ap_service_test.cpp | 159 …EXPECT_EQ(ErrCode::WIFI_OPT_SUCCESS, pApService->GetValidChannels(BandType::BAND_2GHZ, vecChannels… 162 …EXPECT_EQ(ErrCode::WIFI_OPT_SUCCESS, pApService->GetValidChannels(BandType::BAND_5GHZ, vecChannels… 165 …EXPECT_EQ(ErrCode::WIFI_OPT_SUCCESS, pApService->GetValidChannels(BandType::BAND_5GHZ, vecChannels… 232 …EXPECT_EQ(ErrCode::WIFI_OPT_SUCCESS, pApService->GetValidChannels(BandType::BAND_2GHZ, vecChannels… 245 …EXPECT_EQ(ErrCode::WIFI_OPT_INVALID_PARAM, pApService->GetValidChannels(BandType::BAND_ANY, vecCha…
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_ap/ |
H A D | ap_interface.cpp | 89 ErrCode ApInterface::GetValidChannels(BandType band, std::vector<int32_t> &validChannel) in GetValidChannels() function in OHOS::Wifi::ApInterface 91 return m_ApService.GetValidChannels(band, validChannel); in GetValidChannels()
|
H A D | i_ap_service.h | 39 virtual ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validChannel) = 0;
|
H A D | ap_interface.h | 121 virtual ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validChannel) override;
|
H A D | ap_service.h | 120 ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validChannel);
|
H A D | ap_service.cpp | 226 ErrCode ApService::GetValidChannels(BandType band, std::vector<int32_t> &validChannel) in GetValidChannels() function in OHOS::Wifi::ApService 230 if (WifiChannelHelper::GetInstance().GetValidChannels(channelsInfo) != 0) { in GetValidChannels()
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_ap/Mock/ |
H A D | mock_ap_service.h | 38 MOCK_METHOD2(GetValidChannels, ErrCode(BandType band, std::vector<int32_t> &validchannel));
|
H A D | mock_ap_interface.h | 39 virtual ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validChannel);
|
H A D | mock_ap_interface.cpp | 70 ErrCode ApInterface::GetValidChannels(BandType band, std::vector<int32_t> &validChannel) in GetValidChannels() function in OHOS::Wifi::ApInterface
|
/ohos5.0/foundation/communication/wifi/wifi/frameworks/native/src/ |
H A D | wifi_hotspot_impl.cpp | 193 ErrCode WifiHotspotImpl::GetValidChannels(BandType band, std::vector<int32_t> &validchannels) in GetValidChannels() function in OHOS::Wifi::WifiHotspotImpl 197 return client_->GetValidChannels(band, validchannels); in GetValidChannels()
|
H A D | wifi_hotspot_impl.h | 162 ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validchannels) override;
|
H A D | wifi_hotspot_proxy.h | 151 ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validchannels) override;
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_common/ |
H A D | wifi_channel_helper.h | 35 int GetValidChannels(ChannelsTable &channelsInfo);
|
H A D | wifi_channel_helper.cpp | 78 int WifiChannelHelper::GetValidChannels(ChannelsTable &channelsInfo) in GetValidChannels() function in OHOS::Wifi::WifiChannelHelper
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_ap_sa/ |
H A D | wifi_hotspot_service_impl.cpp | 166 (void)pService->GetValidChannels(BandType::BAND_2GHZ, valid2GChannel); in SetHotspotConfig() 167 (void)pService->GetValidChannels(BandType::BAND_5GHZ, valid5GChannel); in SetHotspotConfig() 180 WifiChannelHelper::GetInstance().GetValidChannels(channInfoFromCenter); in SetHotspotConfig() 544 ErrCode WifiHotspotServiceImpl::GetValidChannels(BandType band, std::vector<int32_t> &validchannels) in GetValidChannels() function in OHOS::Wifi::WifiHotspotServiceImpl 557 WifiChannelHelper::GetInstance().GetValidChannels(channInfoFromCenter); in GetValidChannels()
|
H A D | wifi_hotspot_service_impl.h | 150 ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validchannels) override;
|
H A D | wifi_hotspot_stub.cpp | 325 ErrCode ret = GetValidChannels(static_cast<BandType>(band), channels); in OnGetValidChannels()
|
/ohos5.0/foundation/communication/wifi/wifi/frameworks/native/interfaces/ |
H A D | i_wifi_hotspot.h | 154 virtual ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validchannels) = 0;
|
/ohos5.0/foundation/communication/wifi/wifi/interfaces/inner_api/ |
H A D | wifi_hotspot.h | 153 virtual ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validchannels) = 0;
|
/ohos5.0/foundation/communication/wifi/wifi/test/fuzztest/fuzz_common_func/ |
H A D | mock_wifi_ap_service.h | 71 ErrCode GetValidChannels(BandType band, std::vector<int32_t> &validchannel);
|
/ohos5.0/foundation/communication/wifi/wifi/test/fuzztest/wifi_sta/wifiap_fuzzer/ |
H A D | wifiap_fuzzer.cpp | 283 pApService->GetValidChannels(bandType, validChannel); in GetValidChannelsFuzzTest() 284 pApInterface->GetValidChannels(bandType, validChannel); in GetValidChannelsFuzzTest()
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/native/ |
H A D | wifi_inner_hotspot_test.cpp | 163 ErrCode result = devicePtr->GetValidChannels(BandType::BAND_2GHZ, validchannels);
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/unittest/common/ |
H A D | wifi_channel_helper_test.cpp | 63 WifiChannelHelper::GetInstance().GetValidChannels(validChannels);
|
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/unittest/Mock/ |
H A D | mock_wifi_settings.h | 83 virtual int GetValidChannels(ChannelsTable &channelsInfo) = 0; 253 MOCK_METHOD1(GetValidChannels, int(ChannelsTable &channelsInfo));
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/ |
H A D | wifi_p2p_service.cpp | 412 WifiChannelHelper::GetInstance().GetValidChannels(channels); in GetP2pRecommendChannel()
|