Home
last modified time | relevance | path

Searched refs:compare_func_t (Results 1 – 8 of 8) sorted by relevance

/systemd-251/src/basic/
Dprioq.h13 Prioq *prioq_new(compare_func_t compare);
16 int prioq_ensure_allocated(Prioq **q, compare_func_t compare_func);
19 int prioq_ensure_put(Prioq **q, compare_func_t compare_func, void *data, unsigned *idx);
Dprioq.c26 compare_func_t compare_func;
32 Prioq *prioq_new(compare_func_t compare_func) { in prioq_new()
54 int prioq_ensure_allocated(Prioq **q, compare_func_t compare_func) { in prioq_ensure_allocated()
176 int prioq_ensure_put(Prioq **q, compare_func_t compare_func, void *data, unsigned *idx) { in prioq_ensure_put()
Dhash-funcs.h9 typedef int (*compare_func_t)(const void *a, const void *b); typedef
13 compare_func_t compare;
23 .compare = (compare_func_t) compare_func, \
/systemd-251/src/network/
Dnetworkd-queue.h70 compare_func_t compare_func;
102 compare_func_t compare_func,
129 (compare_func_t) _c, \
Dnetworkd-queue.c112 compare_func_t compare_func, in request_new()
186 compare_func_t compare_func, in link_queue_request_full()
Dnetworkd-address.c1291 .compare_func = (compare_func_t) address_compare_func, in address_cancel_request()
Dnetworkd-route.c1556 .compare_func = (compare_func_t) route_compare_func, in route_cancel_request()
/systemd-251/src/test/
Dtest-prioq.c70 assert_se(q = prioq_new((compare_func_t) test_compare)); in TEST()