Home
last modified time | relevance | path

Searched refs:AvahiPrioQueueNode (Results 1 – 4 of 4) sorted by relevance

/external/avahi/avahi-core/
Dprioq.h24 typedef struct AvahiPrioQueueNode AvahiPrioQueueNode; typedef
29 AvahiPrioQueueNode *root, *last;
34 struct AvahiPrioQueueNode { struct
38 AvahiPrioQueueNode *left, *right, *parent, *next, *prev; argument
44 AvahiPrioQueueNode* avahi_prio_queue_put(AvahiPrioQueue *q, void* data);
45 void avahi_prio_queue_remove(AvahiPrioQueue *q, AvahiPrioQueueNode *n);
47 void avahi_prio_queue_shuffle(AvahiPrioQueue *q, AvahiPrioQueueNode *n);
Dprioq.c55 static AvahiPrioQueueNode* get_node_at_xy(AvahiPrioQueue *q, unsigned x, unsigned y) { in get_node_at_xy()
57 AvahiPrioQueueNode *n; in get_node_at_xy()
78 static void exchange_nodes(AvahiPrioQueue *q, AvahiPrioQueueNode *a, AvahiPrioQueueNode *b) { in exchange_nodes()
79 AvahiPrioQueueNode *l, *r, *p, *ap, *an, *bp, *bn; in exchange_nodes()
162 AvahiPrioQueueNode *apl = NULL, *bpl = NULL; in exchange_nodes()
258 void avahi_prio_queue_shuffle(AvahiPrioQueue *q, AvahiPrioQueueNode *n) { in avahi_prio_queue_shuffle()
269 AvahiPrioQueueNode *min; in avahi_prio_queue_shuffle()
290 AvahiPrioQueueNode* avahi_prio_queue_put(AvahiPrioQueue *q, void* data) { in avahi_prio_queue_put()
291 AvahiPrioQueueNode *n; in avahi_prio_queue_put()
294 if (!(n = avahi_new(AvahiPrioQueueNode, 1))) in avahi_prio_queue_put()
[all …]
Dprioq-test.c46 static void rec(AvahiPrioQueueNode *n) { in rec()
101 printf("%i\n", POINTER_TO_INT(((AvahiPrioQueueNode*)q2->root->data)->data)); in main()
Dtimeeventq.c35 AvahiPrioQueueNode *node;