Lines Matching defs:args
100 // args passed to UDP request handler thread as void*
110 // args passed to TCP request handler thread as void*
119 // args passed to UpdateAnswerList thread as void*
1822 mDNSlocal void *UpdateAnswerList(void *args)
1825 DaemonInfo *d = ((UpdateAnswerListArgs *)args)->d;
1826 AnswerListElem *a = ((UpdateAnswerListArgs *)args)->a;
1828 free(args);
1829 args = NULL;
1983 UpdateAnswerListArgs *args;
1995 args = malloc(sizeof(*args));
1996 if (!args) { LogErr("GenLLQEvents", "malloc"); return; }
1997 args->d = d;
1998 args->a = a;
1999 if (pthread_create(&a->tid, NULL, UpdateAnswerList, args) < 0) { LogErr("GenLLQEvents", "pthread_create"); return; }