Home
last modified time | relevance | path

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

/foundation/communication/wifi/wifi/frameworks/js/napi/inc/
Dwifi_napi_hotspot.h26 napi_value IsHotspotDualBandSupported(napi_env env, napi_callback_info info);
/foundation/communication/wifi/wifi/frameworks/native/interfaces/
Di_wifi_hotspot.h49 virtual ErrCode IsHotspotDualBandSupported(bool &isSupported) = 0;
/foundation/communication/wifi/wifi/interfaces/inner_api/
Dwifi_hotspot.h50 virtual ErrCode IsHotspotDualBandSupported(bool &isSupported) = 0;
/foundation/communication/wifi/wifi/frameworks/native/src/
Dwifi_hotspot_impl.h58 ErrCode IsHotspotDualBandSupported(bool &isSupported) override;
Dwifi_hotspot_impl.cpp98 ErrCode WifiHotspotImpl::IsHotspotDualBandSupported(bool &isSupported) in IsHotspotDualBandSupported() function in OHOS::Wifi::WifiHotspotImpl
102 return client_->IsHotspotDualBandSupported(isSupported); in IsHotspotDualBandSupported()
Dwifi_hotspot_proxy.h46 ErrCode IsHotspotDualBandSupported(bool &isSupported) override;
Dwifi_hotspot_proxy.cpp108 ErrCode WifiHotspotProxy::IsHotspotDualBandSupported(bool &isSupported) in IsHotspotDualBandSupported() function in OHOS::Wifi::WifiHotspotProxy
/foundation/communication/wifi/wifi/frameworks/native/c_adapter/src/
Dwifi_c_hotspot.cpp52 NO_SANITIZE("cfi") WifiErrorCode IsHotspotDualBandSupported(bool &isSupported) in IsHotspotDualBandSupported() function
55 return GetCErrorCode(hotspotPtr->IsHotspotDualBandSupported(isSupported)); in IsHotspotDualBandSupported()
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/
Dwifi_hotspot_service_impl.h47 ErrCode IsHotspotDualBandSupported(bool &isSpuported) override;
Dwifi_hotspot_stub.cpp131 ErrCode ret = IsHotspotDualBandSupported(isSupported); in OnIsHotspotDualBandSupported()
Dwifi_hotspot_service_impl.cpp59 ErrCode WifiHotspotServiceImpl::IsHotspotDualBandSupported(bool &isSupported) in IsHotspotDualBandSupported() function in OHOS::Wifi::WifiHotspotServiceImpl
/foundation/communication/wifi/wifi/test/fuzztest/wifi_sta/wifihotspotstub_fuzzer/
Dwifihotspotstub_fuzzer.cpp45 ErrCode IsHotspotDualBandSupported(bool &isSupported) override in IsHotspotDualBandSupported() function in OHOS::Wifi::WifiHotSpotStubFuzzTest
/foundation/communication/wifi/wifi/frameworks/js/napi/src/
Dwifi_napi_hotspot.cpp67 NO_SANITIZE("cfi") napi_value IsHotspotDualBandSupported(napi_env env, napi_callback_info info) in IsHotspotDualBandSupported() function
71 ErrCode ret = wifiHotspotPtr->IsHotspotDualBandSupported(isSupported); in IsHotspotDualBandSupported()
Dwifi_napi_entry.cpp336 DECLARE_NAPI_FUNCTION("isHotspotDualBandSupported", IsHotspotDualBandSupported), in Init()