Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 122) sorted by relevance

12345

/wlan-driver/qca-wifi-host-cmn/qdf/inc/
Dqdf_slist.h53 struct qdf_slist_node *next; member
61 __qdf_slist_item(cursor ? (cursor)->node_field.next : \
73 cursor = __qdf_slist_item((cursor)->node_field.next, \
140 node->next = slist->head; in __qdf_slist_push()
162 slist->head = node->next; in __qdf_slist_pop()
163 node->next = __qdf_slist_poison; in __qdf_slist_pop()
188 if (!prev->next) in __qdf_slist_remove()
191 node = prev->next; in __qdf_slist_remove()
192 prev->next = node->next; in __qdf_slist_remove()
193 node->next = __qdf_slist_poison; in __qdf_slist_remove()
Dqdf_list.h95 #define QDF_LIST_NODE_INIT(prev, next) __QDF_LIST_NODE_INIT(prev, next) argument
105 #define qdf_list_for_each_del(list_ptr, cursor, next, node_field) \ argument
106 __qdf_list_for_each_del(list_ptr, cursor, next, node_field)
/wlan-driver/qcacld-3.0/core/sme/src/csr/
Dcsr_link_list.c34 pList->last = pList->next = pList; in csr_list_init()
43 pNext = pEntry->next; in csr_list_remove_entry()
44 pLast->next = pNext; in csr_list_remove_entry()
53 pEntry = pHead->next; in csr_list_remove_head()
54 pNext = pEntry->next; in csr_list_remove_head()
55 pHead->next = pNext; in csr_list_remove_head()
69 pLast->next = pHead; in csr_list_remove_tail()
80 pEntry->next = pHead; in csr_list_insert_tail()
81 pLast->next = pEntry; in csr_list_insert_tail()
89 pNext = pHead->next; in csr_list_insert_head()
[all …]
/wlan-driver/qcacld-3.0/core/dp/txrx/
Dol_txrx_event.c30 return wdi_sub->priv.next; in wdi_event_next_sub()
39 wdi_event_subscribe *next = wdi_event_next_sub(wdi_sub); in wdi_event_del_subs() local
49 wdi_sub = next; in wdi_event_del_subs()
141 wdi_sub->priv.next = NULL; in wdi_event_sub()
146 event_cb_sub->priv.next = wdi_sub; in wdi_event_sub()
180 event_cb_sub->priv.next; in wdi_event_unsub()
182 event_cb_sub->priv.prev->priv.next = event_cb_sub->priv.next; in wdi_event_unsub()
184 if (event_cb_sub->priv.next) in wdi_event_unsub()
185 event_cb_sub->priv.next->priv.prev = event_cb_sub->priv.prev; in wdi_event_unsub()
Dol_tx_hl.c493 qdf_nbuf_t next; local
504 next = qdf_nbuf_next(msdu);
627 msdu = next;
644 msdu = next;
686 msdu = next;
791 tcp_node_list = temp->next;
984 head->next;
989 while (temp->next) {
990 if ((temp->next->dst_ip == info->dst_ip) &&
991 (temp->next->src_ip == info->src_ip) &&
[all …]
Dol_tx_ll_legacy.c71 qdf_nbuf_t next; in ol_tx_ll() local
102 next = qdf_nbuf_next(msdu); in ol_tx_ll()
140 msdu_info.tso_info.curr_seg->next; in ol_tx_ll()
151 msdu = next; in ol_tx_ll()
172 qdf_nbuf_t next; in ol_tx_ll() local
196 next = qdf_nbuf_next(msdu); in ol_tx_ll()
198 msdu = next; in ol_tx_ll()
Dol_tx_ll.c142 qdf_nbuf_t next; in ol_tx_non_std_ll() local
158 next = qdf_nbuf_next(msdu); in ol_tx_non_std_ll()
185 msdu = next; in ol_tx_non_std_ll()
365 next_seg = free_seg->next; in ol_free_remaining_tso_segs()
376 next_seg = free_seg->next; in ol_free_remaining_tso_segs()
411 tso_seg->next = in ol_tx_prepare_tso()
427 tso_num_seg->next = msdu_info->tso_info. in ol_tx_prepare_tso()
546 c_element->next = in ol_tso_seg_list_init()
548 c_element = c_element->next; in ol_tso_seg_list_init()
568 c_element->next = NULL; in ol_tso_seg_list_init()
[all …]
Dol_rx.c206 qdf_nbuf_t next; in ol_rx_trigger_restore() local
209 next = qdf_nbuf_next(head_msdu); in ol_rx_trigger_restore()
213 head_msdu = next; in ol_rx_trigger_restore()
373 qdf_nbuf_t next; in discard_msdus() local
375 next = qdf_nbuf_next( in discard_msdus()
384 head_msdu = next; in discard_msdus()
393 qdf_nbuf_t next; in chain_msdus() local
395 next = qdf_nbuf_next(head_msdu); in chain_msdus()
401 head_msdu = next; in chain_msdus()
762 qdf_nbuf_t next; in ol_rx_indication_handler() local
[all …]
/wlan-driver/qcacld-3.0/core/mac/src/dph/
Ddph_hash_table.c116 for (ptr = hash_table->pHashTable[index]; ptr; ptr = ptr->next) { in dph_lookup_hash_entry()
186 pnext = sta->next; in dph_init_sta_state()
190 sta->next = pnext; in dph_init_sta_state()
244 for (ptr = hash_table->pHashTable[index]; ptr; ptr = ptr->next) { in dph_add_hash_entry()
245 if (ptr == ptr->next) { in dph_add_hash_entry()
267 hash_table->pDphNodeArray[assocId].next = in dph_add_hash_entry()
317 ptr; prev = ptr, ptr = ptr->next) { in dph_delete_hash_entry()
331 hash_table->pHashTable[index] = ptr->next; in dph_delete_hash_entry()
333 prev->next = ptr->next; in dph_delete_hash_entry()
339 ptr->next = 0; in dph_delete_hash_entry()
/wlan-driver/qca-wifi-host-cmn/dp/wifi3.0/
Ddp_wdi_event.c46 return wdi_sub->priv.next; in dp_wdi_event_next_sub()
180 wdi_sub->priv.next = NULL; in dp_wdi_event_sub()
196 event_cb_sub->priv.next = wdi_sub; in dp_wdi_event_sub()
226 txrx_pdev->wdi_event_list[event_index] = event_cb_sub->priv.next; in dp_wdi_event_unsub()
228 event_cb_sub->priv.prev->priv.next = event_cb_sub->priv.next; in dp_wdi_event_unsub()
230 if (event_cb_sub->priv.next) { in dp_wdi_event_unsub()
231 event_cb_sub->priv.next->priv.prev = event_cb_sub->priv.prev; in dp_wdi_event_unsub()
235 event_cb_sub->priv.next = NULL; in dp_wdi_event_unsub()
Ddp_rx_desc.c107 rx_desc_elem = rx_desc_elem->next; in dp_rx_desc_pool_init_generic()
186 qdf_nbuf_t next; in dp_rx_desc_nbuf_cleanup() local
189 next = nbuf->next; in dp_rx_desc_nbuf_cleanup()
205 nbuf = next; in dp_rx_desc_nbuf_cleanup()
210 next = nbuf->next; in dp_rx_desc_nbuf_cleanup()
212 nbuf = next; in dp_rx_desc_nbuf_cleanup()
316 rx_desc_pool->array[i].next = NULL; in dp_rx_desc_pool_init_generic()
318 rx_desc_pool->array[i].next = in dp_rx_desc_pool_init_generic()
506 rx_desc_pool->freelist = rx_desc_pool->freelist->next; in dp_rx_get_free_desc_list()
508 (*tail)->next = NULL; in dp_rx_get_free_desc_list()
[all …]
Ddp_tx_desc.h476 tx_desc->next = NULL; in dp_tx_desc_clear()
511 pool->freelist = pool->freelist->next; in dp_tx_get_desc_flow_pool()
529 tx_desc->next = pool->freelist; in dp_tx_put_desc_flow_pool()
1043 pool->freelist = pool->freelist->next; in dp_tx_desc_alloc()
1073 pool->freelist = pool->freelist->next; in dp_tx_spcl_desc_alloc()
1126 c_desc = c_desc->next; in dp_tx_desc_alloc_multiple()
1130 pool->freelist = c_desc->next; in dp_tx_desc_alloc_multiple()
1131 c_desc->next = NULL; in dp_tx_desc_alloc_multiple()
1152 tx_desc->next = pool->freelist; in dp_tx_desc_free()
1169 tx_desc->next = pool->freelist; in dp_tx_spcl_desc_free()
[all …]
Ddp_rx.c394 union dp_rx_desc_list_elem_t *next = NULL; in __dp_rx_buffers_no_map_lt_replenish() local
447 next = desc_list->next; in __dp_rx_buffers_no_map_lt_replenish()
448 qdf_prefetch(next); in __dp_rx_buffers_no_map_lt_replenish()
479 desc_list = next; in __dp_rx_buffers_no_map_lt_replenish()
510 union dp_rx_desc_list_elem_t *next; in __dp_rx_buffers_no_map_replenish() local
556 next = (*desc_list)->next; in __dp_rx_buffers_no_map_replenish()
557 nbuf_next = nbuf->next; in __dp_rx_buffers_no_map_replenish()
558 qdf_prefetch(next); in __dp_rx_buffers_no_map_replenish()
583 *desc_list = next; in __dp_rx_buffers_no_map_replenish()
600 nbuf_next = nbuf->next; in __dp_rx_buffers_no_map_replenish()
[all …]
/wlan-driver/qcacld-3.0/core/mac/src/pe/lim/
Dlim_security_utils.c164 pTempNode = pCurrNode->next; in lim_delete_pre_auth_list()
204 pTempNode = pTempNode->next; in lim_search_pre_auth_list()
223 pTempNode = pTempNode->next; in lim_search_pre_auth_list_by_mld_addr()
262 temp_node = found_node->next; in lim_delete_open_auth_pre_auth_node()
264 prev_node->next = temp_node->next; in lim_delete_open_auth_pre_auth_node()
265 temp_node = prev_node->next; in lim_delete_open_auth_pre_auth_node()
271 temp_node = prev_node->next; in lim_delete_open_auth_pre_auth_node()
304 pAuthNode->next = mac->lim.pLimPreAuthList; in lim_add_pre_auth_node()
385 mac->lim.pLimPreAuthList = pTempNode->next; in lim_delete_pre_auth_node()
395 pTempNode = pTempNode->next; in lim_delete_pre_auth_node()
[all …]
Dlim_process_probe_req_frame.c68 pbc = pbc->next; in lim_remove_timeout_pbc_sessions()
130 prev->next = pbc->next; in lim_update_pbc_session_entry()
132 pe_session->pAPWPSPBCSession = pbc->next; in lim_update_pbc_session_entry()
136 pbc = pbc->next; in lim_update_pbc_session_entry()
151 pbc->next = pe_session->pAPWPSPBCSession; in lim_update_pbc_session_entry()
157 pbc = pbc->next; in lim_update_pbc_session_entry()
161 prev->next = NULL; in lim_update_pbc_session_entry()
166 pbc = pbc->next; in lim_update_pbc_session_entry()
/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/
Dqdf_list.c117 listptr = list->anchor.next; in qdf_list_remove_front()
119 list_del_init(list->anchor.next); in qdf_list_remove_front()
199 listptr = list->anchor.next; in qdf_list_peek_front()
224 if (node->next == &list->anchor) in qdf_list_peek_next()
227 *node2 = node->next; in qdf_list_peek_next()
256 if (!linux_node->prev || !linux_node->next) in qdf_list_node_in_any_list()
259 if (linux_node->prev->next != linux_node || in qdf_list_node_in_any_list()
260 linux_node->next->prev != linux_node) in qdf_list_node_in_any_list()
Di_qdf_list.h78 { .prev = &(prev_node), .next = &(next_node), }
95 #define __qdf_list_for_each_del(list_ptr, cursor, next, node_field) \ argument
96 list_for_each_entry_safe(cursor, next, &(list_ptr)->anchor, node_field)
/wlan-driver/qca-wifi-host-cmn/dp/wifi3.0/li/
Ddp_li_rx.h161 void dp_rx_prefetch_nbuf_data(qdf_nbuf_t nbuf, qdf_nbuf_t next) in dp_rx_prefetch_nbuf_data() argument
165 if (next) { in dp_rx_prefetch_nbuf_data()
167 qdf_prefetch(next); in dp_rx_prefetch_nbuf_data()
169 qdf_prefetch(&next->_skb_refdst); in dp_rx_prefetch_nbuf_data()
170 qdf_prefetch(&next->len); in dp_rx_prefetch_nbuf_data()
171 qdf_prefetch(&next->protocol); in dp_rx_prefetch_nbuf_data()
172 pkt_tlvs = (struct rx_pkt_tlvs *)next->data; in dp_rx_prefetch_nbuf_data()
184 void dp_rx_prefetch_nbuf_data(qdf_nbuf_t nbuf, qdf_nbuf_t next) in dp_rx_prefetch_nbuf_data() argument
Ddp_li_rx.c201 qdf_nbuf_t nbuf, next; in dp_rx_process_li() local
561 next = nbuf->next; in dp_rx_process_li()
562 dp_rx_prefetch_nbuf_data(nbuf, next); in dp_rx_process_li()
565 nbuf = next; in dp_rx_process_li()
590 nbuf = next; in dp_rx_process_li()
603 nbuf = next; in dp_rx_process_li()
618 nbuf = next; in dp_rx_process_li()
665 nbuf = next; in dp_rx_process_li()
671 nbuf = next; in dp_rx_process_li()
723 next = nbuf->next; in dp_rx_process_li()
[all …]
/wlan-driver/qcacld-3.0/core/dp/htt/
Dhtt_rx_ll.c1057 head->next = head; in htt_list_init()
1064 head->prev->next = node; in htt_list_add_tail()
1066 node->next = head; in htt_list_add_tail()
1073 node->prev->next = node->next; in htt_list_remove()
1074 node->next->prev = node->prev; in htt_list_remove()
1078 #define HTT_LIST_ITER_FWD(iter, head) for (iter = (head)->next; \
1080 (iter) = (iter)->next) \
1142 if (pdev->rx_ring.hash_table[i]->freepool.next != in htt_rx_hash_list_insert()
1147 pdev->rx_ring.hash_table[i]->freepool.next - in htt_rx_hash_list_insert()
1155 htt_list_remove(pdev->rx_ring.hash_table[i]->freepool.next); in htt_rx_hash_list_insert()
[all …]
Dhtt.c70 pdev->htt_htc_pkt_freelist = pdev->htt_htc_pkt_freelist->u.next; in htt_htc_pkt_alloc()
95 u_pkt->u.next = pdev->htt_htc_pkt_freelist; in htt_htc_pkt_free()
102 struct htt_htc_pkt_union *pkt, *next; in htt_htc_pkt_pool_free() local
110 next = pkt->u.next; in htt_htc_pkt_pool_free()
112 pkt = next; in htt_htc_pkt_pool_free()
121 struct htt_htc_pkt_union *pkt, *next, *prev = NULL; in htt_htc_misc_pkt_list_trim() local
128 next = pkt->u.next; in htt_htc_misc_pkt_list_trim()
138 prev->u.next = NULL; in htt_htc_misc_pkt_list_trim()
141 pkt = next; in htt_htc_misc_pkt_list_trim()
155 u_pkt->u.next = pdev->htt_htc_pkt_misclist; in htt_htc_misc_pkt_list_add()
[all …]
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/
Dhal_flow.h83 int next; in key_bitwise_shift_left() local
88 next = (key[i - 1] & 0x80 ? 1 : 0); in key_bitwise_shift_left()
90 next = 0; in key_bitwise_shift_left()
91 key[i] = (key[i] << 1) | next; in key_bitwise_shift_left()
/wlan-driver/qca-wifi-host-cmn/utils/logging/src/
Dwlan_logging_sock_svc.c300 (struct log_msg *)(gwlan_logging.free_list.next); in wlan_queue_logmsg_for_app()
301 list_del_init(gwlan_logging.free_list.next); in wlan_queue_logmsg_for_app()
308 (struct log_msg *)(gwlan_logging.filled_list.next); in wlan_queue_logmsg_for_app()
310 list_del_init(gwlan_logging.filled_list.next); in wlan_queue_logmsg_for_app()
637 (gwlan_logging.pkt_stat_filled_list.next); in pktlog_send_per_pkt_stats_to_user()
638 list_del_init(gwlan_logging.pkt_stat_filled_list.next); in pktlog_send_per_pkt_stats_to_user()
713 (gwlan_logging.filled_list.next); in send_filled_buffers_to_user()
714 list_del_init(gwlan_logging.filled_list.next); in send_filled_buffers_to_user()
1082 (gwlan_logging.panic_list.next); in wlan_logging_dump_last_logs()
1083 list_del_init(gwlan_logging.panic_list.next); in wlan_logging_dump_last_logs()
[all …]
/wlan-driver/qca-wifi-host-cmn/umac/cmn_services/obj_mgr/src/
Dwlan_objmgr_debug.c371 tmp_ln_node = tmp_ln_node->next; in wlan_objmgr_print_ref_func_line()
373 func_head = func_head->next; in wlan_objmgr_print_ref_func_line()
615 line_node->next = NULL; in wlan_objmgr_trace_line_node_alloc()
638 func_node->next = NULL; in wlan_objmgr_trace_ref_node_alloc()
655 tmp_ln_node = tmp_ln_node->next; in wlan_objmgr_trace_check_line()
660 tmp_ln_node->next = tmp_func_node->line_head; in wlan_objmgr_trace_check_line()
689 tmp_func_node = tmp_func_node->next; in wlan_objmgr_trace_ref()
696 func_node->next = tmp_func_node; in wlan_objmgr_trace_ref()
711 line_node = line_node->next; in wlan_objmgr_trace_del_line()
730 func_node = func_node->next; in wlan_objmgr_trace_del_ref_list()
[all …]
/wlan-driver/qca-wifi-host-cmn/dp/wifi3.0/rh/
Ddp_rh_rx.c717 qdf_nbuf_t nbuf, next; in dp_rx_data_indication_handler() local
979 next = nbuf->next; in dp_rx_data_indication_handler()
982 nbuf = next; in dp_rx_data_indication_handler()
997 nbuf = next; in dp_rx_data_indication_handler()
1011 nbuf = next; in dp_rx_data_indication_handler()
1026 nbuf = next; in dp_rx_data_indication_handler()
1071 nbuf = next; in dp_rx_data_indication_handler()
1077 nbuf = next; in dp_rx_data_indication_handler()
1130 next = nbuf->next; in dp_rx_data_indication_handler()
1143 nbuf = next; in dp_rx_data_indication_handler()
[all …]

12345