Home
last modified time | relevance | path

Searched refs:servDiscReqInfoParam (Results 1 – 11 of 11) 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.cpp197 servDiscReqInfoParam.freq = 2412;
198 servDiscReqInfoParam.dialogToken = 1;
199 servDiscReqInfoParam.updateIndic = 2;
200 servDiscReqInfoParam.macLen = 6;
201 servDiscReqInfoParam.mac = new uint8_t[servDiscReqInfoParam.macLen];
202 memcpy_s(servDiscReqInfoParam.mac, servDiscReqInfoParam.macLen, "\x00\x11\x22\x33\x44\x55", 6);
203 servDiscReqInfoParam.tlvsLen = 4;
204 servDiscReqInfoParam.tlvs = new uint8_t[servDiscReqInfoParam.tlvsLen];
205 memcpy_s(servDiscReqInfoParam.tlvs, servDiscReqInfoParam.tlvsLen, "x01x02x03x04", 4);
212 delete[] servDiscReqInfoParam.mac;
[all …]
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/
H A Dwifi_hdi_wpa_callback.cpp748 const struct HdiP2pServDiscReqInfoParam *servDiscReqInfoParam, const char* ifName) in OnEventServDiscReq() argument
751 if (servDiscReqInfoParam == nullptr) { in OnEventServDiscReq()
757 cbInfo.freq = servDiscReqInfoParam->freq; in OnEventServDiscReq()
758 cbInfo.dialogToken = servDiscReqInfoParam->dialogToken; in OnEventServDiscReq()
759 cbInfo.updateIndic = servDiscReqInfoParam->updateIndic; in OnEventServDiscReq()
762 ConvertMacArr2String(servDiscReqInfoParam->mac, servDiscReqInfoParam->macLen, in OnEventServDiscReq()
766 if (servDiscReqInfoParam->tlvsLen > 0 && servDiscReqInfoParam->tlvs != nullptr) { in OnEventServDiscReq()
767 … OHOS::Wifi::Char2Vec(servDiscReqInfoParam->tlvs, servDiscReqInfoParam->tlvsLen, cbInfo.tlvList); in OnEventServDiscReq()
H A Dwifi_hdi_wpa_callback.h69 const struct HdiP2pServDiscReqInfoParam *servDiscReqInfoParam, const char* ifName);
/ohos5.0/drivers/peripheral/wlan/test/hdi_service/
H A Dp2p_callback_impl.c167 const struct HdiP2pServDiscReqInfoParam *servDiscReqInfoParam, const char *ifName) in P2pCallbackServDiscReq() argument
170 if (servDiscReqInfoParam == NULL || ifName == NULL) { in P2pCallbackServDiscReq()
174 HDF_LOGE("%{public}s: mac=" MACSTR, __func__, MAC2STR(servDiscReqInfoParam->mac)); in P2pCallbackServDiscReq()
/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.txt1134 struct HdiP2pServDiscReqInfoParam* servDiscReqInfoParam = NULL;
1137servDiscReqInfoParam = (struct HdiP2pServDiscReqInfoParam*)OsalMemCalloc(sizeof(struct HdiP2pServD…
1138 if (servDiscReqInfoParam == NULL) {
1139 HDF_LOGE("%{public}s: malloc servDiscReqInfoParam failed", __func__);
1143 if (!HdiP2pServDiscReqInfoParamBlockUnmarshalling(wpaCallbackData, servDiscReqInfoParam)) {
1144 HDF_LOGE("%{public}s: read servDiscReqInfoParam failed!", __func__);
1169 wpaCallbackRet = serviceImpl->OnEventServDiscReq(serviceImpl, servDiscReqInfoParam, ifName);
1176 if (servDiscReqInfoParam != NULL) {
1177 HdiP2pServDiscReqInfoParamFree(servDiscReqInfoParam, true);
1178 servDiscReqInfoParam = NULL;
H A Diwpa_callback.h.txt147 const struct HdiP2pServDiscReqInfoParam* servDiscReqInfoParam, const char* ifName);
H A Dwpa_callback_service.c.txt147 const struct HdiP2pServDiscReqInfoParam* servDiscReqInfoParam, const char* ifName)
H A Dwpa_callback_proxy.c.txt1159 const struct HdiP2pServDiscReqInfoParam* servDiscReqInfoParam, const char* ifName)
1184 if (!HdiP2pServDiscReqInfoParamBlockMarshalling(wpaCallbackData, servDiscReqInfoParam)) {
1185 HDF_LOGE("%{public}s: write servDiscReqInfoParam failed!", __func__);
/ohos5.0/drivers/interface/wlan/wpa/v1_0/
H A DIWpaCallback.idl302 * @param servDiscReqInfoParam Indicates the paramerter of Service Discovery request.
308 …OnEventServDiscReq([in] struct HdiP2pServDiscReqInfoParam servDiscReqInfoParam, [in] String ifName…
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/foo/wlan/wpa/v1_0/
H A DIWpaCallback.idl302 * @param servDiscReqInfoParam Indicates the paramerter of Service Discovery request.
308 …OnEventServDiscReq([in] struct HdiP2pServDiscReqInfoParam servDiscReqInfoParam, [in] String ifName…
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/dump_ast_target/
H A Ddump.txt424 [in] ohos.hdi.wlan.wpa.v1_0.HdiP2pServDiscReqInfoParam servDiscReqInfoParam,