Searched refs:replyPinLen (Results 1 – 9 of 9) sorted by relevance
/ohos5.0/drivers/peripheral/wlan/test/hdi_service/ |
H A D | p2p_hdi_direct_test.cpp | 391 uint32_t replyPinLen = REPLY_SIZE; variable 393 int32_t rc = g_wpaObj->P2pConnect(g_wpaObj, nullptr, &info, replyPin, replyPinLen); 395 rc = g_wpaObj->P2pConnect(g_wpaObj, IFNAME, nullptr, replyPin, replyPinLen); 397 rc = g_wpaObj->P2pConnect(g_wpaObj, IFNAME, &info, nullptr, replyPinLen); 399 rc = g_wpaObj->P2pConnect(g_wpaObj, IFNAME, &info, replyPin, replyPinLen);
|
H A D | p2p_hdi_hal_services_c_test.cpp | 497 uint32_t replyPinLen = REPLY_SIZE; variable 502 rc = g_wpaObj->P2pConnect(g_wpaObj, "p2p-dev-wlan0", &info, replyPin, replyPinLen);
|
/ohos5.0/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/ |
H A D | wpa_p2p_cmd.h | 111 const struct HdiP2pConnectInfo *info, char *replyPin, uint32_t replyPinLen);
|
H A D | wpa_p2p_cmd.c | 967 char *replyPin, uint32_t replyPinLen) in WpaInterfaceP2pConnect() argument 1061 if (strncpy_s(replyPin, replyPinLen, reply, strlen(reply)) != 0) { in WpaInterfaceP2pConnect()
|
/ohos5.0/drivers/peripheral/wlan/test/fuzztest/ |
H A D | wpa_common_fuzzer.cpp | 804 uint32_t replyPinLen = REPLY_SIZE; in FuzzWpaInterfaceP2pConnect() local 806 interface->P2pConnect(interface, ifName, &info, replyPin, replyPinLen); in FuzzWpaInterfaceP2pConnect()
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/c_target/wlan/wpa/v1_0/ |
H A D | iwpa_interface.h.txt | 292 char* replyPin, uint32_t replyPinLen);
|
H A D | wpa_interface_stub.c.txt | 3818 uint32_t replyPinLen = 0; 3847 if (!HdfSbufReadUint32(wpaInterfaceData, &replyPinLen)) { 3853 …HDI_CHECK_VALUE_RET_GOTO(replyPinLen, >, HDI_BUFF_MAX_SIZE / sizeof(char), wpaInterfaceRet, HDF_ER… 3854 if (replyPinLen > 0) { 3855 replyPin = (char*)OsalMemCalloc(replyPinLen); 3869 replyPinLen = HDI_BUFF_MAX_SIZE; 3885 wpaInterfaceRet = serviceImpl->P2pConnect(serviceImpl, ifName, info, replyPin, replyPinLen);
|
H A D | wpa_interface_service.c.txt | 390 const struct HdiP2pConnectInfo* info, char* replyPin, uint32_t replyPinLen)
|
H A D | wpa_interface_proxy.c.txt | 3948 const struct HdiP2pConnectInfo* info, char* replyPin, uint32_t replyPinLen) 3991 if (replyPin == NULL || replyPinLen == 0) { 3997 if (!HdfSbufWriteUint32(wpaInterfaceData, replyPinLen)) { 3998 HDF_LOGE("%{public}s: write replyPinLen failed!", __func__); 4015 if (strcpy_s(replyPin, replyPinLen, replyPinCopy) != EOK) {
|