Lines Matching refs:bssid
343 wpsParam.bssid = static_cast<uint8_t *>(OsalMemCalloc(sizeof(uint8_t) * (wpsParam.bssidLen)));
344 if (wpsParam.bssid == nullptr) {
347 wpsParam.bssid[0] = 0x12;
348 wpsParam.bssid[1] = 0x34;
349 wpsParam.bssid[2] = 0x56;
350 wpsParam.bssid[3] = 0x78;
351 wpsParam.bssid[4] = 0xab;
352 wpsParam.bssid[5] = 0xcd;
355 OsalMemFree(wpsParam.bssid);
367 wpsParam.bssid = static_cast<uint8_t *>(OsalMemCalloc(sizeof(uint8_t) * (wpsParam.bssidLen)));
368 if (wpsParam.bssid == nullptr) {
371 wpsParam.bssid[0] = 0x12;
372 wpsParam.bssid[1] = 0x34;
373 wpsParam.bssid[2] = 0x56;
374 wpsParam.bssid[3] = 0x78;
375 wpsParam.bssid[4] = 0xab;
376 wpsParam.bssid[5] = 0xcd;
380 OsalMemFree(wpsParam.bssid);
730 const char *bssid = reinterpret_cast<const char *>(rawData);
733 interface->P2pReinvoke(interface, ifName, networkId, bssid);
758 reqService.bssid = static_cast<uint8_t *>(OsalMemCalloc(sizeof(uint8_t) * (reqService.bssidLen)));
759 if (reqService.bssid == nullptr) {
763 reqService.bssid[0] = 0x12;
764 reqService.bssid[1] = 0x34;
765 reqService.bssid[2] = 0x56;
766 reqService.bssid[3] = 0x78;
767 reqService.bssid[4] = 0xab;
768 reqService.bssid[5] = 0xcd;
772 OsalMemFree(reqService.bssid);
823 info.bssid = static_cast<uint8_t *>(OsalMemCalloc(sizeof(uint8_t) * (info.bssidLen)));
824 if (info.bssid == nullptr) {
827 info.bssid[macAddrIndexOne] = 0x00;
828 info.bssid[macAddrIndexTwo] = 0x00;
829 info.bssid[macAddrIndexThree] = 0x00;
830 info.bssid[macAddrIndexFour] = 0x00;
831 info.bssid[macAddrIndexFive] = 0x00;
832 info.bssid[macAddrIndexSix] = 0x00;
834 OsalMemFree(info.bssid);
888 const char *bssid = reinterpret_cast<const char *>(rawData);
892 interface->P2pGetPeer(interface, ifName, bssid, &info);
899 const char *bssid = reinterpret_cast<const char *>(rawData);
902 interface->P2pGetGroupCapability(interface, ifName, bssid, &cap);