Home
last modified time | relevance | path

Searched refs:setPowerModelList (Results 1 – 22 of 22) sorted by relevance

/ohos5.0/foundation/communication/wifi/wifi/frameworks/js/napi/src/
H A Dwifi_ext_napi_hotspot.cpp55 const std::set<PowerModel>& setPowerModelList, napi_value& arrayResult) in NativePowerModelListToJsObj() argument
58 for (auto& each : setPowerModelList) { in NativePowerModelListToJsObj()
91 context->errorCode = hotspot->GetSupportedPowerModel(context->setPowerModelList); in GetSupportedPowerModel()
96 … napi_create_array_with_length(context->env, context->setPowerModelList.size(), &context->result); in GetSupportedPowerModel()
97 NativePowerModelListToJsObj(context->env, context->setPowerModelList, context->result); in GetSupportedPowerModel()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_ap/
H A Dap_interface.cpp99 ErrCode ApInterface::GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) in GetSupportedPowerModel() argument
101 return m_ApService.GetSupportedPowerModel(setPowerModelList); in GetSupportedPowerModel()
H A Dap_service.cpp286 ErrCode ApService::GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) in GetSupportedPowerModel() argument
290 setPowerModelList.insert(PowerModel::SLEEPING); in GetSupportedPowerModel()
291 setPowerModelList.insert(PowerModel::GENERAL); in GetSupportedPowerModel()
292 setPowerModelList.insert(PowerModel::THROUGH_WALL); in GetSupportedPowerModel()
H A Di_ap_service.h40 virtual ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) = 0;
H A Dap_interface.h129 virtual ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) override;
H A Dap_service.h136 ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList);
/ohos5.0/foundation/communication/wifi/wifi/test/fuzztest/wifi_sta/wifihotspotimpl_fuzzer/
H A Dwifihotspotimpl_fuzzer.cpp108 std::set<PowerModel> setPowerModelList; in DisassociateStaFuzzTest() local
109 pWifiHotspotServiceImpl->GetSupportedPowerModel(setPowerModelList); in DisassociateStaFuzzTest()
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/native/
H A Dwifi_inner_hotspot_test.cpp182 std::set<PowerModel> setPowerModelList; variable
183 ErrCode result = devicePtr->GetSupportedPowerModel(setPowerModelList);
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_ap/Mock/
H A Dmock_ap_interface.h40 virtual ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList);
H A Dmock_ap_interface.cpp80 ErrCode ApInterface::GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) in GetSupportedPowerModel() argument
/ohos5.0/foundation/communication/wifi/wifi/frameworks/js/napi/inc/
H A Dwifi_ext_napi_hotspot.h45 std::set<PowerModel> setPowerModelList;
/ohos5.0/foundation/communication/wifi/wifi/frameworks/native/src/
H A Dwifi_hotspot_impl.cpp226 ErrCode WifiHotspotImpl::GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) in GetSupportedPowerModel() argument
230 return client_->GetSupportedPowerModel(setPowerModelList); in GetSupportedPowerModel()
H A Dwifi_hotspot_impl.h196 ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) override;
H A Dwifi_hotspot_proxy.h182 ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) override;
H A Dwifi_hotspot_proxy.cpp716 ErrCode WifiHotspotProxy::GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) in GetSupportedPowerModel() argument
755 setPowerModelList.insert(PowerModel(val)); in GetSupportedPowerModel()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_ap_sa/
H A Dwifi_hotspot_stub.cpp503 std::set<PowerModel> setPowerModelList; in OnGetSupportedPowerModel() local
504 ErrCode ret = GetSupportedPowerModel(setPowerModelList); in OnGetSupportedPowerModel()
508 int size = (int)setPowerModelList.size(); in OnGetSupportedPowerModel()
510 for (auto &powerModel : setPowerModelList) { in OnGetSupportedPowerModel()
H A Dwifi_hotspot_service_impl.h175 ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) override;
H A Dwifi_hotspot_service_impl.cpp653 ErrCode WifiHotspotServiceImpl::GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) in GetSupportedPowerModel() argument
669 pService->GetSupportedPowerModel(setPowerModelList); in GetSupportedPowerModel()
/ohos5.0/foundation/communication/wifi/wifi/test/fuzztest/wifi_sta/wifiap_fuzzer/
H A Dwifiap_fuzzer.cpp296 std::set<PowerModel> setPowerModelList; in GetSupportedPowerModelFuzzTest() local
297 pApService->GetSupportedPowerModel(setPowerModelList); in GetSupportedPowerModelFuzzTest()
298 pApInterface->GetSupportedPowerModel(setPowerModelList); in GetSupportedPowerModelFuzzTest()
/ohos5.0/foundation/communication/wifi/wifi/frameworks/native/interfaces/
H A Di_wifi_hotspot.h179 virtual ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) = 0;
/ohos5.0/foundation/communication/wifi/wifi/interfaces/inner_api/
H A Dwifi_hotspot.h186 virtual ErrCode GetSupportedPowerModel(std::set<PowerModel>& setPowerModelList) = 0;
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_ap/
H A Dap_service_test.cpp250 std::set<PowerModel> setPowerModelList; variable
251 EXPECT_EQ(ErrCode::WIFI_OPT_SUCCESS, pApService->GetSupportedPowerModel(setPowerModelList));