Home
last modified time | relevance | path

Searched refs:passoc_req (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/drivers/staging/rtl8723bs/core/
Drtw_mlme.c1567 u8 *passoc_req = NULL; in rtw_stassoc_event_callback() local
1579 if (psta->passoc_req && psta->assoc_req_len > 0) { in rtw_stassoc_event_callback()
1580 passoc_req = rtw_zmalloc(psta->assoc_req_len); in rtw_stassoc_event_callback()
1581 if (passoc_req) { in rtw_stassoc_event_callback()
1583 memcpy(passoc_req, psta->passoc_req, assoc_req_len); in rtw_stassoc_event_callback()
1585 kfree(psta->passoc_req); in rtw_stassoc_event_callback()
1586 psta->passoc_req = NULL; in rtw_stassoc_event_callback()
1592 if (passoc_req && assoc_req_len > 0) { in rtw_stassoc_event_callback()
1593 rtw_cfg80211_indicate_sta_assoc(adapter, passoc_req, assoc_req_len); in rtw_stassoc_event_callback()
1595 kfree(passoc_req); in rtw_stassoc_event_callback()
Drtw_mlme_ext.c1623 if (pstat->passoc_req) { in OnAssocReq()
1624 kfree(pstat->passoc_req); in OnAssocReq()
1625 pstat->passoc_req = NULL; in OnAssocReq()
1629 pstat->passoc_req = rtw_zmalloc(pkt_len); in OnAssocReq()
1630 if (pstat->passoc_req) { in OnAssocReq()
1631 memcpy(pstat->passoc_req, pframe, pkt_len); in OnAssocReq()
/Linux-v4.19/drivers/staging/rtl8723bs/include/
Dsta_info.h195 u8 *passoc_req; member