Home
last modified time | relevance | path

Searched refs:replyDiscLen (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/drivers/peripheral/wlan/test/hdi_service/
H A Dp2p_hdi_direct_test.cpp346 uint32_t replyDiscLen = REPLY_SIZE; variable
351 …2_t rc = g_wpaObj->P2pReqServiceDiscovery(g_wpaObj, nullptr, &reqService, replyDisc, replyDiscLen);
353 rc = g_wpaObj->P2pReqServiceDiscovery(g_wpaObj, IFNAME, nullptr, replyDisc, replyDiscLen);
355 rc = g_wpaObj->P2pReqServiceDiscovery(g_wpaObj, IFNAME, &reqService, nullptr, replyDiscLen);
357 rc = g_wpaObj->P2pReqServiceDiscovery(g_wpaObj, IFNAME, &reqService, replyDisc, replyDiscLen);
H A Dp2p_hdi_hal_services_c_test.cpp439 uint32_t replyDiscLen = REPLY_SIZE; variable
455 … g_wpaObj->P2pReqServiceDiscovery(g_wpaObj, "p2p-dev-wlan0", &reqService, replyDisc, replyDiscLen);
/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
903 if (strncpy_s(replyDisc, replyDiscLen, seq, strlen(seq)) != EOK) { in WpaInterfaceP2pReqServiceDiscovery()
/ohos5.0/drivers/peripheral/wlan/test/fuzztest/
H A Dwpa_common_fuzzer.cpp754 uint32_t replyDiscLen = REPLY_SIZE; in FuzzWpaInterfaceP2pReqServiceDiscovery() local
770 interface->P2pReqServiceDiscovery(interface, ifName, &reqService, replyDisc, replyDiscLen); in FuzzWpaInterfaceP2pReqServiceDiscovery()
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/c_target/wlan/wpa/v1_0/
H A Diwpa_interface.h.txt284 const struct HdiP2pReqService* reqService, char* replyDisc, uint32_t replyDiscLen);
H A Dwpa_interface_stub.c.txt3608 uint32_t replyDiscLen = 0;
3637 if (!HdfSbufReadUint32(wpaInterfaceData, &replyDiscLen)) {
3643 …HDI_CHECK_VALUE_RET_GOTO(replyDiscLen, >, HDI_BUFF_MAX_SIZE / sizeof(char), wpaInterfaceRet, HDF_E…
3644 if (replyDiscLen > 0) {
3645 replyDisc = (char*)OsalMemCalloc(replyDiscLen);
3659 replyDiscLen = HDI_BUFF_MAX_SIZE;
3675 …et = serviceImpl->P2pReqServiceDiscovery(serviceImpl, ifName, reqService, replyDisc, 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)
3799 if (replyDisc == NULL || replyDiscLen == 0) {
3805 if (!HdfSbufWriteUint32(wpaInterfaceData, replyDiscLen)) {
3806 HDF_LOGE("%{public}s: write replyDiscLen failed!", __func__);
3823 if (strcpy_s(replyDisc, replyDiscLen, replyDiscCopy) != EOK) {