Lines Matching refs:f
21 static int run_thread(thread_t *t, void (*f)(void)) in run_thread()
23 f(); in run_thread()
38 void (*f)(void); in thread_run() local
40 *(void **) (&f) = arg; in thread_run()
42 f(); in thread_run()
46 static int run_thread(thread_t *t, void (*f)(void)) in run_thread()
48 *t = CreateThread(NULL, 0, thread_run, *(void **) &f, 0, NULL); in run_thread()
63 void (*f)(void); in thread_run() local
65 *(void **) (&f) = arg; in thread_run()
67 f(); in thread_run()
71 static int run_thread(thread_t *t, void (*f)(void)) in run_thread()
73 return pthread_create(t, NULL, thread_run, *(void **) &f) == 0; in run_thread()