Home
last modified time | relevance | path

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

/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/
Di_qdf_list.h92 #define __qdf_list_for_each(list_ptr, cursor, node_field) \ argument
93 list_for_each_entry(cursor, &(list_ptr)->anchor, node_field)
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)
98 #define __qdf_list_for_each_from(list_ptr, cursor, node_field) \ argument
99 list_for_each_entry_from(cursor, &(list_ptr)->anchor, node_field)
101 #define __qdf_list_for_each_continue(list_ptr, cursor, node_field) \ argument
102 list_for_each_entry_continue(cursor, &(list_ptr)->anchor, node_field)
104 #define __qdf_list_first_entry_or_null(list_ptr, type, node_field) \ argument
105 list_first_entry_or_null(&(list_ptr)->anchor, type, node_field)
[all …]
/wlan-driver/qca-wifi-host-cmn/qdf/inc/
Dqdf_list.h102 #define qdf_list_for_each(list_ptr, cursor, node_field) \ argument
103 __qdf_list_for_each(list_ptr, cursor, node_field)
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)
108 #define qdf_list_for_each_from(list_ptr, cursor, node_field) \ argument
109 __qdf_list_for_each_from(list_ptr, cursor, node_field)
111 #define qdf_list_for_each_continue(list_ptr, cursor, node_field) \ argument
112 __qdf_list_for_each_continue(list_ptr, cursor, node_field)
114 #define qdf_list_first_entry_or_null(list_ptr, type, node_field) \ argument
115 __qdf_list_first_entry_or_null(list_ptr, type, node_field)
[all …]
/wlan-driver/qcacld-3.0/core/hdd/src/
Dwlan_hdd_cfg80211.c18044 struct hdd_vendor_chan_info **list_ptr, in hdd_extract_external_acs_frequencies() argument
18122 *list_ptr = channel_list; in hdd_extract_external_acs_frequencies()
18140 struct hdd_vendor_chan_info **list_ptr, in hdd_extract_external_acs_channels() argument
18235 *list_ptr = channel_list; in hdd_extract_external_acs_channels()