Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/wifi/wifi/relation_services/wifi_hal_service/
H A Dwifi_hal_p2p_interface.h397 WifiErrorNo P2pGetChba0Freq(int *chba0Freq);
H A Dwifi_hal_p2p_interface.c1004 WifiErrorNo P2pGetChba0Freq(int *chba0Freq) argument
1006 if (chba0Freq == NULL) {
1015 P2pSupplicantErrCode ret = pMainIfc->wpaP2pCliCmdP2pGetChba0Freq(pMainIfc, chba0Freq);
H A Dwifi_hal_crpc_p2p.c832 int chba0Freq = 0; in RpcP2pGetChba0Freq() local
833 WifiErrorNo err = P2pGetChba0Freq(&chba0Freq); in RpcP2pGetChba0Freq()
837 WriteInt(context, chba0Freq); in RpcP2pGetChba0Freq()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/idl_client/idl_interface/
H A Di_wifi_p2p_iface.h401 WifiErrorNo P2pGetChba0Freq(int *chba0Freq);
H A Di_wifi_p2p_iface.c1003 WifiErrorNo P2pGetChba0Freq(int *chba0Freq) in P2pGetChba0Freq() argument
1019 ReadInt(context, chba0Freq); in P2pGetChba0Freq()
/ohos5.0/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/
H A Dwpa_p2p_hal.h76 P2pSupplicantErrCode (*wpaP2pCliCmdP2pGetChba0Freq)(WifiWpaP2pInterface *p, int *chba0Freq);
H A Dwpa_p2p_hal.c944 static P2pSupplicantErrCode WpaP2pCliCmdP2pGetChba0Freq(WifiWpaP2pInterface *this, int *chba0Freq) in WpaP2pCliCmdP2pGetChba0Freq() argument
946 if (this == NULL || chba0Freq == NULL) { in WpaP2pCliCmdP2pGetChba0Freq()
978 *chba0Freq = atoi(freq); in WpaP2pCliCmdP2pGetChba0Freq()
983 … HDF_LOGD("WpaP2pCliCmdP2pGetChba0Freq: buf = %{public}s chba0Freq = %{public}d", buf, *chba0Freq); in WpaP2pCliCmdP2pGetChba0Freq()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/wifi_hal_interface/
H A Dwifi_p2p_hal_interface.h404 WifiErrorNo GetChba0Freq(int &chba0Freq) const;
H A Dwifi_p2p_hal_interface.cpp528 WifiErrorNo WifiP2PHalInterface::GetChba0Freq(int &chba0Freq) const in GetChba0Freq()
535 return mIdlClient->ReqP2pGetChba0Freq(chba0Freq); in GetChba0Freq()
/ohos5.0/foundation/communication/wifi/wifi/relation_services/wifi_hal_service/wifi_hal_module/wpa_supplicant_hal/wpa_p2p_hal/
H A Dwifi_p2p_hal.h80 P2pSupplicantErrCode (*wpaP2pCliCmdP2pGetChba0Freq)(WifiWpaP2pInterface *p, int *chba0Freq);
H A Dwifi_p2p_hal.c1181 static P2pSupplicantErrCode WpaP2pCliCmdP2pGetChba0Freq(WifiWpaP2pInterface *this, int *chba0Freq) in WpaP2pCliCmdP2pGetChba0Freq() argument
1183 if (this == NULL || chba0Freq == NULL) { in WpaP2pCliCmdP2pGetChba0Freq()
1219 *chba0Freq = atoi(freq); in WpaP2pCliCmdP2pGetChba0Freq()
1224 LOGD("WpaP2pCliCmdP2pGetChba0Freq: buf = %{public}s chba0Freq = %{public}d", buf, *chba0Freq); in WpaP2pCliCmdP2pGetChba0Freq()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/idl_client/
H A Dwifi_idl_client.h1046 WifiErrorNo ReqP2pGetChba0Freq(int &chba0Freq) const;
H A Dwifi_idl_client.cpp1731 WifiErrorNo WifiIdlClient::ReqP2pGetChba0Freq(int &chba0Freq) const in ReqP2pGetChba0Freq()
1734 return P2pGetChba0Freq(&chba0Freq); in ReqP2pGetChba0Freq()
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/idl_client/unittest/
H A Dwifi_idl_client_test.cpp1578 int chba0Freq = 0; variable
1579 mClient.ReqP2pGetChba0Freq(chba0Freq);
1581 EXPECT_TRUE(mClient.ReqP2pGetChba0Freq(chba0Freq) == WIFI_HAL_OPT_FAILED);