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

Lines Matching defs:arg

41   void *arg;
44 static void qcallback(void *arg, int status, int timeouts, unsigned char *abuf, int alen);
109 int type, ares_callback callback, void *arg)
122 callback(arg, status, 0, NULL, 0);
133 callback(arg, ARES_ENOMEM, 0, NULL, 0);
137 qquery->arg = arg;
144 static void qcallback(void *arg, int status, int timeouts, unsigned char *abuf, int alen)
146 struct qquery *qquery = (struct qquery *) arg;
151 qquery->callback(qquery->arg, status, timeouts, abuf, alen);
180 qquery->callback(qquery->arg, status, timeouts, abuf, alen);