Lines Matching refs:l
132 struct rb_node *l, *r; local
139 l = n->rb_left;
140 if (l && service_range_entry(l)->max >= start) {
145 n = l;
580 struct list_head *l; in tipc_nametbl_lookup_anycast() local
595 l = &r->local_publ; in tipc_nametbl_lookup_anycast()
596 if (list_empty(l)) in tipc_nametbl_lookup_anycast()
598 p = list_first_entry(l, struct publication, local_publ); in tipc_nametbl_lookup_anycast()
601 l = &r->local_publ; in tipc_nametbl_lookup_anycast()
602 p = list_first_entry(l, struct publication, local_publ); in tipc_nametbl_lookup_anycast()
605 l = &r->all_publ; in tipc_nametbl_lookup_anycast()
606 p = list_first_entry(l, struct publication, all_publ); in tipc_nametbl_lookup_anycast()
1141 struct tipc_dest *tipc_dest_find(struct list_head *l, u32 node, u32 port) in tipc_dest_find() argument
1145 list_for_each_entry(dst, l, list) { in tipc_dest_find()
1152 bool tipc_dest_push(struct list_head *l, u32 node, u32 port) in tipc_dest_push() argument
1156 if (tipc_dest_find(l, node, port)) in tipc_dest_push()
1164 list_add(&dst->list, l); in tipc_dest_push()
1168 bool tipc_dest_pop(struct list_head *l, u32 *node, u32 *port) in tipc_dest_pop() argument
1172 if (list_empty(l)) in tipc_dest_pop()
1174 dst = list_first_entry(l, typeof(*dst), list); in tipc_dest_pop()
1184 bool tipc_dest_del(struct list_head *l, u32 node, u32 port) in tipc_dest_del() argument
1188 dst = tipc_dest_find(l, node, port); in tipc_dest_del()
1196 void tipc_dest_list_purge(struct list_head *l) in tipc_dest_list_purge() argument
1200 list_for_each_entry_safe(dst, tmp, l, list) { in tipc_dest_list_purge()