Searched refs:cmpfn (Results 1 – 3 of 3) sorted by relevance
/linux-2.4.37.9/include/linux/netfilter_ipv4/ |
D | listhelp.h | 12 #define LIST_FIND(head, cmpfn, type, args...) \ argument 18 if (cmpfn((const type)__i , ## args)) { \ 25 #define LIST_FIND_W(head, cmpfn, type, args...) \ argument 31 if (cmpfn((type)__i , ## args)) { \ 39 #define LIST_FIND_B(head, cmpfn, type, args...) \ argument 45 if (cmpfn((const type)__i , ## args)) { \ 93 #define LIST_INSERT(head, new, cmpfn) \ argument
|
/linux-2.4.37.9/net/ipv4/netfilter/ |
D | ip_queue.c | 90 __ipq_find_entry(ipq_cmpfn cmpfn, unsigned long data) in __ipq_find_entry() argument 97 if (!cmpfn || cmpfn(entry, data)) in __ipq_find_entry() 111 __ipq_find_dequeue_entry(ipq_cmpfn cmpfn, unsigned long data) in __ipq_find_dequeue_entry() argument 115 entry = __ipq_find_entry(cmpfn, data); in __ipq_find_dequeue_entry() 168 ipq_find_dequeue_entry(ipq_cmpfn cmpfn, unsigned long data) in ipq_find_dequeue_entry() argument 173 entry = __ipq_find_dequeue_entry(cmpfn, data); in ipq_find_dequeue_entry()
|
/linux-2.4.37.9/net/ipv6/netfilter/ |
D | ip6_queue.c | 96 __ipq_find_entry(ipq_cmpfn cmpfn, unsigned long data) in __ipq_find_entry() argument 103 if (!cmpfn || cmpfn(entry, data)) in __ipq_find_entry() 117 __ipq_find_dequeue_entry(ipq_cmpfn cmpfn, unsigned long data) in __ipq_find_dequeue_entry() argument 121 entry = __ipq_find_entry(cmpfn, data); in __ipq_find_dequeue_entry() 174 ipq_find_dequeue_entry(ipq_cmpfn cmpfn, unsigned long data) in ipq_find_dequeue_entry() argument 179 entry = __ipq_find_dequeue_entry(cmpfn, data); in ipq_find_dequeue_entry()
|