Lines Matching refs:item
35 /** The pointers in the linked list's items. Use this in the item structure */
41 /** Initialize a list item */
42 #define AVAHI_LLIST_INIT(t,name,item) do { \
43 t *_item = (item); \
48 /** Prepend an item to the list */
49 #define AVAHI_LLIST_PREPEND(t,name,head,item) do { \
50 t **_head = &(head), *_item = (item); \
58 /** Remove an item from the list */
59 #define AVAHI_LLIST_REMOVE(t,name,head,item) do { \
60 t **_head = &(head), *_item = (item); \