Home
last modified time | relevance | path

Searched refs:powerModel (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/communication/wifi/wifi/frameworks/js/napi/inc/
H A Dwifi_ext_napi_hotspot.h34 PowerModel powerModel;
37 : AsyncContext(env, work, deferred), powerModel(PowerModel::GENERAL) {}
/ohos5.0/foundation/communication/wifi/wifi/frameworks/js/napi/src/
H A Dwifi_ext_napi_hotspot.cpp127 context->errorCode = hotspot->GetPowerModel(context->powerModel); in GetPowerModel()
132 napi_create_int32(context->env, static_cast<int>(context->powerModel), &context->result); in GetPowerModel()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/config/
H A Dwifi_config_center.cpp61 powerModel.emplace(0, PowerModel::GENERAL); in WifiConfigCenter()
714 auto ret = powerModel.emplace(id, model); in SetPowerModel()
716 powerModel[id] = model; in SetPowerModel()
724 auto iter = powerModel.find(id); in GetPowerModel()
725 if (iter != powerModel.end()) { in GetPowerModel()
728 powerModel[id] = PowerModel::GENERAL; in GetPowerModel()
729 model = powerModel[id]; in GetPowerModel()
H A Dwifi_config_center.h377 std::map<int, PowerModel> powerModel; variable
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_ap_sa/
H A Dwifi_hotspot_stub.cpp510 for (auto &powerModel : setPowerModelList) { in OnGetSupportedPowerModel() local
511 reply.WriteInt32(static_cast<int>(powerModel)); in OnGetSupportedPowerModel()