/drivers/staging/rtl8723bs/core/ |
D | rtw_sta_mgt.c | 127 struct list_head *plist, *phead; in kfree_all_stainfo() local 132 phead = get_list_head(&pstapriv->free_sta_queue); in kfree_all_stainfo() 133 plist = get_next(phead); in kfree_all_stainfo() 135 while (phead != plist) { in kfree_all_stainfo() 151 struct list_head *phead, *plist; in _rtw_free_sta_priv() local 161 phead = &(pstapriv->sta_hash[index]); in _rtw_free_sta_priv() 162 plist = get_next(phead); in _rtw_free_sta_priv() 164 while (phead != plist) { in _rtw_free_sta_priv() 400 struct list_head *phead, *plist; in rtw_free_stainfo() local 414 phead = get_list_head(ppending_recvframe_queue); in rtw_free_stainfo() [all …]
|
D | rtw_ap.c | 204 struct list_head *phead, *plist; in expire_timeout_chk() local 214 phead = &pstapriv->auth_list; in expire_timeout_chk() 215 plist = get_next(phead); in expire_timeout_chk() 219 if (phead != plist) { in expire_timeout_chk() 225 while (phead != plist) { in expire_timeout_chk() 260 phead = &pstapriv->asoc_list; in expire_timeout_chk() 261 plist = get_next(phead); in expire_timeout_chk() 265 if (phead != plist) { in expire_timeout_chk() 270 while (phead != plist) { in expire_timeout_chk() 1330 struct list_head *plist, *phead; in rtw_acl_add_sta() local [all …]
|
D | rtw_xmit.c | 133 pxmitbuf->phead = pxmitbuf->pbuf; in _rtw_init_xmit_priv() 136 pxmitbuf->pdata = pxmitbuf->ptail = pxmitbuf->phead; in _rtw_init_xmit_priv() 213 pxmitbuf->phead = pxmitbuf->pbuf; in _rtw_init_xmit_priv() 216 pxmitbuf->pdata = pxmitbuf->ptail = pxmitbuf->phead; in _rtw_init_xmit_priv() 243 pxmitbuf->phead = pxmitbuf->pbuf; in _rtw_init_xmit_priv() 246 pxmitbuf->pdata = pxmitbuf->ptail = pxmitbuf->phead; in _rtw_init_xmit_priv() 1504 pxmitbuf->pdata = pxmitbuf->ptail = pxmitbuf->phead; in __rtw_alloc_cmd_xmitbuf() 1552 struct list_head *plist, *phead; in rtw_alloc_xmitbuf_ext() local 1560 phead = get_list_head(pfree_queue); in rtw_alloc_xmitbuf_ext() 1562 plist = get_next(phead); in rtw_alloc_xmitbuf_ext() [all …]
|
D | rtw_mlme.c | 245 struct list_head *phead, *plist; in _rtw_find_network() local 256 phead = get_list_head(scanned_queue); in _rtw_find_network() 257 plist = get_next(phead); in _rtw_find_network() 259 while (plist != phead) { in _rtw_find_network() 268 if (plist == phead) in _rtw_find_network() 279 struct list_head *phead, *plist; in rtw_free_network_queue() local 286 phead = get_list_head(scanned_queue); in rtw_free_network_queue() 287 plist = get_next(phead); in rtw_free_network_queue() 289 while (phead != plist) { in rtw_free_network_queue() 435 struct list_head *phead, *plist; in _rtw_find_same_network() local [all …]
|
D | rtw_recv.c | 108 struct list_head *plist, *phead; in _rtw_alloc_recvframe() local 115 phead = get_list_head(pfree_recv_queue); in _rtw_alloc_recvframe() 117 plist = get_next(phead); in _rtw_alloc_recvframe() 225 struct list_head *plist, *phead; in rtw_free_recvframe_queue() local 229 phead = get_list_head(pframequeue); in rtw_free_recvframe_queue() 230 plist = get_next(phead); in rtw_free_recvframe_queue() 232 while (phead != plist) { in rtw_free_recvframe_queue() 286 struct list_head *plist, *phead; in rtw_dequeue_recvbuf() local 293 phead = get_list_head(queue); in rtw_dequeue_recvbuf() 295 plist = get_next(phead); in rtw_dequeue_recvbuf() [all …]
|
D | rtw_ioctl_set.c | 54 struct list_head *plist, *phead; in rtw_do_join() local 61 phead = get_list_head(queue); in rtw_do_join() 62 plist = get_next(phead); in rtw_do_join() 64 …_rtl871x_ioctl_set_c_, _drv_info_, ("\n rtw_do_join: phead = %p; plist = %p\n\n\n", phead, plist)); in rtw_do_join()
|
/drivers/staging/rtl8188eu/core/ |
D | rtw_sta_mgt.c | 133 struct list_head *phead, *plist; in _rtw_free_sta_priv() local 144 phead = &pstapriv->sta_hash[index]; in _rtw_free_sta_priv() 145 plist = phead->next; in _rtw_free_sta_priv() 147 while (phead != plist) { in _rtw_free_sta_priv() 308 struct list_head *phead, *plist; in rtw_free_stainfo() local 321 phead = get_list_head(ppending_recvframe_queue); in rtw_free_stainfo() 322 plist = phead->next; in rtw_free_stainfo() 324 while (!list_empty(phead)) { in rtw_free_stainfo() 385 struct list_head *plist, *phead; in rtw_free_all_stainfo() local 397 phead = &pstapriv->sta_hash[index]; in rtw_free_all_stainfo() [all …]
|
D | rtw_ap.c | 167 struct list_head *phead, *plist; in expire_timeout_chk() local 177 phead = &pstapriv->auth_list; in expire_timeout_chk() 178 plist = phead->next; in expire_timeout_chk() 181 while (phead != plist) { in expire_timeout_chk() 210 phead = &pstapriv->asoc_list; in expire_timeout_chk() 211 plist = phead->next; in expire_timeout_chk() 214 while (phead != plist) { in expire_timeout_chk() 1022 struct list_head *plist, *phead; in rtw_acl_add_sta() local 1037 phead = get_list_head(pacl_node_q); in rtw_acl_add_sta() 1038 plist = phead->next; in rtw_acl_add_sta() [all …]
|
D | rtw_mlme.c | 182 struct list_head *phead, *plist; in rtw_find_network() local 190 phead = get_list_head(scanned_queue); in rtw_find_network() 191 plist = phead->next; in rtw_find_network() 193 while (plist != phead) { in rtw_find_network() 199 if (plist == phead) in rtw_find_network() 207 struct list_head *phead, *plist; in rtw_free_network_queue() local 214 phead = get_list_head(scanned_queue); in rtw_free_network_queue() 215 plist = phead->next; in rtw_free_network_queue() 217 while (phead != plist) { in rtw_free_network_queue() 319 struct list_head *plist, *phead; in rtw_get_oldest_wlan_network() local [all …]
|
D | rtw_recv.c | 168 struct list_head *plist, *phead; in rtw_free_recvframe_queue() local 172 phead = get_list_head(pframequeue); in rtw_free_recvframe_queue() 173 plist = phead->next; in rtw_free_recvframe_queue() 175 while (phead != plist) { in rtw_free_recvframe_queue() 1311 struct list_head *plist, *phead; in recvframe_defrag() local 1321 phead = get_list_head(defrag_q); in recvframe_defrag() 1322 plist = phead->next; in recvframe_defrag() 1341 while (phead != plist) { in recvframe_defrag() 1391 struct list_head *phead; in recvframe_chk_defrag() local 1436 phead = get_list_head(pdefrag_q); in recvframe_chk_defrag() [all …]
|
D | rtw_ioctl_set.c | 18 struct list_head *plist, *phead; in rtw_do_join() local 25 phead = get_list_head(queue); in rtw_do_join() 26 plist = phead->next; in rtw_do_join() 28 …rtl871x_ioctl_set_c_, _drv_info_, ("\n %s: phead = %p; plist = %p\n\n\n", __func__, phead, plist)); in rtw_do_join()
|
D | rtw_xmit.c | 1329 struct list_head *plist, *phead; in rtw_free_xmitframe_queue() local 1334 phead = get_list_head(pframequeue); in rtw_free_xmitframe_queue() 1335 plist = phead->next; in rtw_free_xmitframe_queue() 1337 while (phead != plist) { in rtw_free_xmitframe_queue() 1738 struct list_head *plist, *phead; in dequeue_xmitframes_to_sleeping_queue() local 1745 phead = get_list_head(pframequeue); in dequeue_xmitframes_to_sleeping_queue() 1746 plist = phead->next; in dequeue_xmitframes_to_sleeping_queue() 1748 while (phead != plist) { in dequeue_xmitframes_to_sleeping_queue()
|
/drivers/staging/rtl8712/ |
D | rtl871x_sta_mgt.c | 69 struct list_head *plist, *phead; in mfree_all_stainfo() local 72 phead = &pstapriv->free_sta_queue.queue; in mfree_all_stainfo() 73 plist = phead->next; in mfree_all_stainfo() 74 while (!end_of_queue_search(phead, plist)) in mfree_all_stainfo() 194 struct list_head *plist, *phead; in r8712_free_all_stainfo() local 204 phead = &(pstapriv->sta_hash[index]); in r8712_free_all_stainfo() 205 plist = phead->next; in r8712_free_all_stainfo() 206 while (!end_of_queue_search(phead, plist)) { in r8712_free_all_stainfo() 221 struct list_head *plist, *phead; in r8712_get_stainfo() local 229 phead = &(pstapriv->sta_hash[index]); in r8712_get_stainfo() [all …]
|
D | rtl8712_recv.c | 108 precvbuf->phead = precvbuf->pbuf; in r8712_init_recvbuf() 174 struct list_head *plist, *phead; in recvframe_defrag() local 182 phead = &defrag_q->queue; in recvframe_defrag() 183 plist = phead->next; in recvframe_defrag() 199 while (!end_of_queue_search(phead, plist)) { in recvframe_defrag() 241 struct list_head *phead; in r8712_recvframe_chk_defrag() local 274 phead = &pdefrag_q->queue; in r8712_recvframe_chk_defrag() 275 list_add_tail(&pfhdr->list, phead); in r8712_recvframe_chk_defrag() 290 phead = &pdefrag_q->queue; in r8712_recvframe_chk_defrag() 291 list_add_tail(&pfhdr->list, phead); in r8712_recvframe_chk_defrag() [all …]
|
D | rtl871x_mlme.c | 136 struct list_head *phead, *plist; in r8712_find_network() local 142 phead = &scanned_queue->queue; in r8712_find_network() 143 plist = phead->next; in r8712_find_network() 144 while (plist != phead) { in r8712_find_network() 157 struct list_head *phead, *plist; in r8712_free_network_queue() local 163 phead = &scanned_queue->queue; in r8712_free_network_queue() 164 plist = phead->next; in r8712_free_network_queue() 165 while (!end_of_queue_search(phead, plist)) { in r8712_free_network_queue() 260 struct list_head *plist, *phead; in r8712_get_oldest_wlan_network() local 264 phead = &scanned_queue->queue; in r8712_get_oldest_wlan_network() [all …]
|
D | rtl871x_ioctl_set.c | 42 struct list_head *plist, *phead; in do_join() local 48 phead = &queue->queue; in do_join() 49 plist = phead->next; in do_join()
|
D | rtl871x_ioctl_linux.c | 1037 struct list_head *phead; in r8711_wx_set_wap() local 1050 phead = &queue->queue; in r8711_wx_set_wap() 1051 pmlmepriv->pscanned = phead->next; in r8711_wx_set_wap() 1053 if (end_of_queue_search(phead, pmlmepriv->pscanned)) in r8711_wx_set_wap() 1187 struct list_head *plist, *phead; in r8711_wx_get_scan() local 1202 phead = &queue->queue; in r8711_wx_get_scan() 1203 plist = phead->next; in r8711_wx_get_scan() 1205 if (end_of_queue_search(phead, plist)) in r8711_wx_get_scan() 1244 struct list_head *phead; in r8711_wx_set_essid() local 1261 phead = &queue->queue; in r8711_wx_set_essid() [all …]
|
D | rtl871x_recv.c | 119 struct list_head *plist, *phead; in r8712_free_recvframe_queue() local 122 phead = &pframequeue->queue; in r8712_free_recvframe_queue() 123 plist = phead->next; in r8712_free_recvframe_queue() 124 while (!end_of_queue_search(phead, plist)) { in r8712_free_recvframe_queue()
|
D | rtl8712_recv.h | 98 u8 *phead; member
|
/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | head.c | 81 nvkm_head_del(struct nvkm_head **phead) in nvkm_head_del() argument 83 struct nvkm_head *head = *phead; in nvkm_head_del() 87 kfree(*phead); in nvkm_head_del() 88 *phead = NULL; in nvkm_head_del()
|
/drivers/firmware/arm_scmi/ |
D | driver.c | 1212 struct list_head *phead; in scmi_create_protocol_devices() local 1215 phead = idr_find(&scmi_requested_devices, prot_id); in scmi_create_protocol_devices() 1216 if (phead) { in scmi_create_protocol_devices() 1219 list_for_each_entry(rdev, phead, node) in scmi_create_protocol_devices() 1253 struct list_head *head, *phead = NULL; in scmi_request_protocol_device() local 1266 if (!phead) { in scmi_request_protocol_device() 1272 phead = head; in scmi_request_protocol_device() 1301 if (!phead) { in scmi_request_protocol_device() 1302 phead = kzalloc(sizeof(*phead), GFP_KERNEL); in scmi_request_protocol_device() 1303 if (!phead) { in scmi_request_protocol_device() [all …]
|
/drivers/staging/rtl8188eu/os_dep/ |
D | xmit_linux.c | 114 struct list_head *phead, *plist; in rtw_mlcst2unicst() local 120 phead = &pstapriv->asoc_list; in rtw_mlcst2unicst() 121 plist = phead->next; in rtw_mlcst2unicst() 124 while (phead != plist) { in rtw_mlcst2unicst()
|
/drivers/staging/rtl8723bs/hal/ |
D | rtl8723bs_xmit.c | 641 struct list_head *plist, *phead; in rtl8723bs_free_xmit_priv() local 647 phead = get_list_head(pqueue); in rtl8723bs_free_xmit_priv() 654 list_add_tail(&tmplist, phead); in rtl8723bs_free_xmit_priv() 655 list_del_init(phead); in rtl8723bs_free_xmit_priv() 659 phead = &tmplist; in rtl8723bs_free_xmit_priv() 660 while (list_empty(phead) == false) { in rtl8723bs_free_xmit_priv() 661 plist = get_next(phead); in rtl8723bs_free_xmit_priv()
|
/drivers/staging/rtl8723bs/os_dep/ |
D | xmit_linux.c | 131 struct list_head *phead, *plist; in rtw_mlcst2unicst() local 145 phead = &pstapriv->asoc_list; in rtw_mlcst2unicst() 146 plist = get_next(phead); in rtw_mlcst2unicst() 149 while (phead != plist) { in rtw_mlcst2unicst()
|
D | ioctl_linux.c | 1132 struct list_head *phead; in rtw_wx_set_wap() local 1157 phead = get_list_head(queue); in rtw_wx_set_wap() 1158 pmlmepriv->pscanned = get_next(phead); in rtw_wx_set_wap() 1161 if (phead == pmlmepriv->pscanned) in rtw_wx_set_wap() 1420 struct list_head *plist, *phead; in rtw_wx_get_scan() local 1449 phead = get_list_head(queue); in rtw_wx_get_scan() 1450 plist = get_next(phead); in rtw_wx_get_scan() 1453 if (phead == plist) in rtw_wx_get_scan() 1502 struct list_head *phead; in rtw_wx_set_essid() local 1553 phead = get_list_head(queue); in rtw_wx_set_essid() [all …]
|