Lines Matching refs:l
983 struct tipc_dest *tipc_dest_find(struct list_head *l, u32 node, u32 port) in tipc_dest_find() argument
987 list_for_each_entry(dst, l, list) { in tipc_dest_find()
994 bool tipc_dest_push(struct list_head *l, u32 node, u32 port) in tipc_dest_push() argument
998 if (tipc_dest_find(l, node, port)) in tipc_dest_push()
1006 list_add(&dst->list, l); in tipc_dest_push()
1010 bool tipc_dest_pop(struct list_head *l, u32 *node, u32 *port) in tipc_dest_pop() argument
1014 if (list_empty(l)) in tipc_dest_pop()
1016 dst = list_first_entry(l, typeof(*dst), list); in tipc_dest_pop()
1026 bool tipc_dest_del(struct list_head *l, u32 node, u32 port) in tipc_dest_del() argument
1030 dst = tipc_dest_find(l, node, port); in tipc_dest_del()
1038 void tipc_dest_list_purge(struct list_head *l) in tipc_dest_list_purge() argument
1042 list_for_each_entry_safe(dst, tmp, l, list) { in tipc_dest_list_purge()
1048 int tipc_dest_list_len(struct list_head *l) in tipc_dest_list_len() argument
1053 list_for_each_entry(dst, l, list) { in tipc_dest_list_len()