Home | History | Annotate | Download | only in c-ares

Lines Matching defs:arg

38   void *arg;
47 static void search_callback(void *arg, int status, int timeouts,
55 int type, ares_callback callback, void *arg)
68 callback(arg, status, 0, NULL, 0);
73 ares_query(channel, s, dnsclass, type, callback, arg);
84 callback(arg, ARES_ENOMEM, 0, NULL, 0);
92 callback(arg, ARES_ENOMEM, 0, NULL, 0);
99 squery->arg = arg;
138 callback(arg, status, 0, NULL, 0);
143 static void search_callback(void *arg, int status, int timeouts,
146 struct search_query *squery = (struct search_query *) arg;
208 squery->callback(squery->arg, status, squery->timeouts, abuf, alen);