Home
last modified time | relevance | path

Searched refs:replyPin (Results 1 – 6 of 6) sorted by relevance

/drivers/peripheral/wlan/test/hdi_service/
Dp2p_hdi_direct_test.cpp390 char *replyPin = (char *)calloc(REPLY_SIZE, sizeof(char)); 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);
399 rc = g_wpaObj->P2pConnect(g_wpaObj, IFNAME, &info, replyPin, replyPinLen);
401 free(replyPin);
Dp2p_hdi_hal_services_c_test.cpp496 char *replyPin = (char *)calloc(REPLY_SIZE, sizeof(char)); variable
502 rc = g_wpaObj->P2pConnect(g_wpaObj, "p2p-dev-wlan0", &info, replyPin, replyPinLen);
507 free(replyPin);
/drivers/peripheral/wlan/test/fuzztest/
Dwpa_common_fuzzer.cpp798 char *replyPin = static_cast<char *>(calloc(REPLY_SIZE, sizeof(char))); in FuzzWpaInterfaceP2pConnect() local
799 if (replyPin == nullptr) { in FuzzWpaInterfaceP2pConnect()
804 interface->P2pConnect(interface, ifName, &info, replyPin, replyPinLen); in FuzzWpaInterfaceP2pConnect()
805 free(replyPin); in FuzzWpaInterfaceP2pConnect()
/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/
Dwpa_p2p_cmd.h111 const struct HdiP2pConnectInfo *info, char *replyPin, uint32_t replyPinLen);
Dwpa_p2p_cmd.c854 char *replyPin, uint32_t replyPinLen) in WpaInterfaceP2pConnect() argument
857 if (ifName == NULL || info == NULL || replyPin == NULL) { in WpaInterfaceP2pConnect()
940 if (strncpy_s(replyPin, replyPinLen, reply, strlen(reply)) != 0) { in WpaInterfaceP2pConnect()
/drivers/interface/wlan/wpa/v1_0/
DIWpaInterface.idl999 * @param replyPin Pin generated, if |provisionMethod| uses one of the enerated |PIN*| methods.
1007 P2pConnect([in] String ifName, [in] struct HdiP2pConnectInfo info, [out] String replyPin);
1014 * @param replyPin Pin generated, if |provisionMethod| uses one of the enerated |PIN*| methods.