Home
last modified time | relevance | path

Searched refs:staConnectStateParam (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/
H A Dwifi_hdi_wpa_callback_test.cpp218 struct HdiP2pStaConnectStateParam staConnectStateParam; variable
219 staConnectStateParam.p2pDeviceAddressLen = 17;
220 staConnectStateParam.state = 1;
222 int32_t result = OnEventStaConnectState(nullptr, &staConnectStateParam, "wlan0");
230 struct HdiP2pStaConnectStateParam staConnectStateParam; variable
231 staConnectStateParam.p2pDeviceAddressLen = 17;
232 staConnectStateParam.state = 0;
234 int32_t result = OnEventStaConnectState(nullptr, &staConnectStateParam, "wlan0");
237 staConnectStateParam.state = 1;
238 result = OnEventStaConnectState(nullptr, &staConnectStateParam, "wlan0");
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/
H A Dwifi_hdi_wpa_callback.cpp796 const struct HdiP2pStaConnectStateParam *staConnectStateParam, const char* ifName) in OnEventStaConnectState() argument
799 if (staConnectStateParam == nullptr) { in OnEventStaConnectState()
805 ConvertMacArr2String(staConnectStateParam->p2pDeviceAddress, in OnEventStaConnectState()
806 staConnectStateParam->p2pDeviceAddressLen, address, sizeof(address)); in OnEventStaConnectState()
807 ConvertMacArr2String(staConnectStateParam->srcAddress, in OnEventStaConnectState()
808 staConnectStateParam->srcAddressLen, srcAddress, sizeof(srcAddress)); in OnEventStaConnectState()
809 if (staConnectStateParam->state == 1) { in OnEventStaConnectState()
H A Dwifi_hdi_wpa_callback.h73 const struct HdiP2pStaConnectStateParam *staConnectStateParam, const char* ifName);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/c_target/wlan/wpa/v1_0/
H A Dwpa_callback_stub.c.txt1246 struct HdiP2pStaConnectStateParam* staConnectStateParam = NULL;
1249staConnectStateParam = (struct HdiP2pStaConnectStateParam*)OsalMemCalloc(sizeof(struct HdiP2pStaCo…
1250 if (staConnectStateParam == NULL) {
1251 HDF_LOGE("%{public}s: malloc staConnectStateParam failed", __func__);
1255 if (!HdiP2pStaConnectStateParamBlockUnmarshalling(wpaCallbackData, staConnectStateParam)) {
1256 HDF_LOGE("%{public}s: read staConnectStateParam failed!", __func__);
1281 wpaCallbackRet = serviceImpl->OnEventStaConnectState(serviceImpl, staConnectStateParam, ifName);
1288 if (staConnectStateParam != NULL) {
1289 HdiP2pStaConnectStateParamFree(staConnectStateParam, true);
1290 staConnectStateParam = NULL;
H A Diwpa_callback.h.txt153 const struct HdiP2pStaConnectStateParam* staConnectStateParam, const char* ifName);
H A Dwpa_callback_service.c.txt159 const struct HdiP2pStaConnectStateParam* staConnectStateParam, const char* ifName)
H A Dwpa_callback_proxy.c.txt1267 const struct HdiP2pStaConnectStateParam* staConnectStateParam, const char* ifName)
1292 if (!HdiP2pStaConnectStateParamBlockMarshalling(wpaCallbackData, staConnectStateParam)) {
1293 HDF_LOGE("%{public}s: write staConnectStateParam failed!", __func__);
/ohos5.0/drivers/interface/wlan/wpa/v1_0/
H A DIWpaCallback.idl324 * @param staConnectStateParam Indicates the paramerter of Sta Connect State.
330 …OnEventStaConnectState([in] struct HdiP2pStaConnectStateParam staConnectStateParam, [in] String if…
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/foo/wlan/wpa/v1_0/
H A DIWpaCallback.idl324 * @param staConnectStateParam Indicates the paramerter of Sta Connect State.
330 …OnEventStaConnectState([in] struct HdiP2pStaConnectStateParam staConnectStateParam, [in] String if…
/ohos5.0/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/
H A Dwpa_p2p_cmd.h191 struct P2pStaConnectStateParam *staConnectStateParam, const char *ifName);
H A Dwpa_p2p_cmd.c2079 static int32_t WpaFillP2pStaConnectStateParam(struct P2pStaConnectStateParam *staConnectStateParam, in WpaFillP2pStaConnectStateParam() argument
2083 if (staConnectStateParam == NULL || hdiP2pStaConnectStateParam == NULL) { in WpaFillP2pStaConnectStateParam()
2087 hdiP2pStaConnectStateParam->state = staConnectStateParam->state; in WpaFillP2pStaConnectStateParam()
2090 staConnectStateParam->srcAddress, ETH_ADDR_LEN) != HDF_SUCCESS) { in WpaFillP2pStaConnectStateParam()
2096 staConnectStateParam->p2pDeviceAddress, ETH_ADDR_LEN) != HDF_SUCCESS) { in WpaFillP2pStaConnectStateParam()
2380 struct P2pStaConnectStateParam *staConnectStateParam, const char *ifName) in ProcessEventP2pStaConnectState() argument
2388 …if (WpaFillP2pStaConnectStateParam(staConnectStateParam, &hdiP2pStaConnectStateParam) != HDF_SUCCE… in ProcessEventP2pStaConnectState()
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/dump_ast_target/
H A Ddump.txt432 [in] ohos.hdi.wlan.wpa.v1_0.HdiP2pStaConnectStateParam staConnectStateParam,