Home
last modified time | relevance | path

Searched refs:reqService (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/drivers/peripheral/wlan/test/fuzztest/
H A Dwpa_common_fuzzer.cpp755 struct HdiP2pReqService reqService; in FuzzWpaInterfaceP2pReqServiceDiscovery() local
757 reqService.bssidLen = ETH_ADDR_LEN; in FuzzWpaInterfaceP2pReqServiceDiscovery()
758reqService.bssid = static_cast<uint8_t *>(OsalMemCalloc(sizeof(uint8_t) * (reqService.bssidLen))); in FuzzWpaInterfaceP2pReqServiceDiscovery()
759 if (reqService.bssid == nullptr) { in FuzzWpaInterfaceP2pReqServiceDiscovery()
763 reqService.bssid[0] = 0x12; in FuzzWpaInterfaceP2pReqServiceDiscovery()
764 reqService.bssid[1] = 0x34; in FuzzWpaInterfaceP2pReqServiceDiscovery()
765 reqService.bssid[2] = 0x56; in FuzzWpaInterfaceP2pReqServiceDiscovery()
766 reqService.bssid[3] = 0x78; in FuzzWpaInterfaceP2pReqServiceDiscovery()
767 reqService.bssid[4] = 0xab; in FuzzWpaInterfaceP2pReqServiceDiscovery()
768 reqService.bssid[5] = 0xcd; in FuzzWpaInterfaceP2pReqServiceDiscovery()
[all …]
/ohos5.0/drivers/peripheral/wlan/test/hdi_service/
H A Dp2p_hdi_hal_services_c_test.cpp440 struct HdiP2pReqService reqService; variable
442 &reqService, sizeof(struct HdiP2pReqService), 0, sizeof(struct HdiP2pReqService));
443 reqService.bssidLen = ETH_ADDR_LEN;
444 reqService.bssid = (uint8_t *)OsalMemCalloc(sizeof(uint8_t) * (reqService.bssidLen));
445 reqService.bssid[0] = 0x12;
446 reqService.bssid[1] = 0x34;
447 reqService.bssid[2] = 0x56;
448 reqService.bssid[3] = 0x78;
449 reqService.bssid[4] = 0xab;
450 reqService.bssid[5] = 0xcd;
[all …]
H A Dp2p_hdi_direct_test.cpp347 struct HdiP2pReqService reqService; variable
349 &reqService, sizeof(struct HdiP2pReqService), 0, sizeof(struct HdiP2pReqService));
351 …int32_t rc = g_wpaObj->P2pReqServiceDiscovery(g_wpaObj, nullptr, &reqService, replyDisc, replyDisc…
355 rc = g_wpaObj->P2pReqServiceDiscovery(g_wpaObj, IFNAME, &reqService, nullptr, replyDiscLen);
357 rc = g_wpaObj->P2pReqServiceDiscovery(g_wpaObj, IFNAME, &reqService, replyDisc, replyDiscLen);
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/
H A Dwifi_hdi_wpa_p2p_impl.h89 WifiErrorNo HdiP2pReqServiceDiscovery(struct HdiP2pReqService *reqService, char *replyDisc, int siz…
H A Dwifi_hdi_wpa_p2p_impl.c924 WifiErrorNo HdiP2pReqServiceDiscovery(struct HdiP2pReqService *reqService, char *replyDisc, int siz… in HdiP2pReqServiceDiscovery() argument
935 int32_t result = wpaObj->P2pReqServiceDiscovery(wpaObj, GetHdiP2pIfaceName(), reqService, in HdiP2pReqServiceDiscovery()
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/
H A Dwifi_hdi_wpa_p2p_impl_test.cpp244 struct HdiP2pReqService reqService; variable
246 WifiErrorNo result = HdiP2pReqServiceDiscovery(&reqService, replyDisc, SIZE);
/ohos5.0/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/
H A Dwpa_p2p_cmd.h103 const struct HdiP2pReqService *reqService, char *replyDisc, uint32_t replyDiscLen);
H A Dwpa_p2p_cmd.c880 const struct HdiP2pReqService *reqService, char *replyDisc, uint32_t replyDiscLen) in WpaInterfaceP2pReqServiceDiscovery() argument
883 if (ifName == NULL || reqService == NULL || replyDisc == NULL) { in WpaInterfaceP2pReqServiceDiscovery()
896 … P2pSupplicantErrCode ret = pMainIfc->wpaP2pCliCmdServDiscReq(pMainIfc, (char *)reqService->bssid, in WpaInterfaceP2pReqServiceDiscovery()
897 (char *)reqService->msg, seq, sizeof(seq)); in WpaInterfaceP2pReqServiceDiscovery()
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/c_target/wlan/wpa/v1_0/
H A Dwpa_interface_stub.c.txt3606 struct HdiP2pReqService* reqService = NULL;
3624 reqService = (struct HdiP2pReqService*)OsalMemCalloc(sizeof(struct HdiP2pReqService));
3625 if (reqService == NULL) {
3626 HDF_LOGE("%{public}s: malloc reqService failed", __func__);
3630 if (!HdiP2pReqServiceBlockUnmarshalling(wpaInterfaceData, reqService)) {
3631 HDF_LOGE("%{public}s: read reqService failed!", __func__);
3675 …wpaInterfaceRet = serviceImpl->P2pReqServiceDiscovery(serviceImpl, ifName, reqService, replyDisc, …
3692 if (reqService != NULL) {
3693 HdiP2pReqServiceFree(reqService, true);
3694 reqService = NULL;
H A Diwpa_interface.h.txt284 const struct HdiP2pReqService* reqService, char* replyDisc, uint32_t replyDiscLen);
H A Dwpa_interface_service.c.txt373 const struct HdiP2pReqService* reqService, char* replyDisc, uint32_t replyDiscLen)
H A Dwpa_interface_proxy.c.txt3756 const struct HdiP2pReqService* reqService, char* replyDisc, uint32_t replyDiscLen)
3793 if (!HdiP2pReqServiceBlockMarshalling(wpaInterfaceData, reqService)) {
3794 HDF_LOGE("%{public}s: write reqService failed!", __func__);
/ohos5.0/drivers/interface/wlan/wpa/v1_0/
H A DIWpaInterface.idl955 * @param reqService Indicates device mac address of the peer device.
964 …P2pReqServiceDiscovery([in] String ifName, [in] struct HdiP2pReqService reqService,[out] String re…
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/foo/wlan/wpa/v1_0/
H A DIWpaInterface.idl955 * @param reqService Indicates device mac address of the peer device.
964 …P2pReqServiceDiscovery([in] String ifName, [in] struct HdiP2pReqService reqService,[out] String re…
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/dump_ast_target/
H A Ddump.txt270 [in] ohos.hdi.wlan.wpa.v1_0.HdiP2pReqService reqService,