Lines Matching refs:context
56 void *context; member
60 static void work_queue_read_cb(void *context);
131 bool thread_post(thread_t *thread, thread_fn func, void *context) { in thread_post() argument
143 item->context = context; in thread_post()
203 void *context = thread->work_queue; in run_thread() local
205 …reactor_object_t *work_queue_object = reactor_register(thread->reactor, fd, context, work_queue_re… in run_thread()
215 item->func(item->context); in run_thread()
228 static void work_queue_read_cb(void *context) { in work_queue_read_cb() argument
229 assert(context != NULL); in work_queue_read_cb()
231 fixed_queue_t *queue = (fixed_queue_t *)context; in work_queue_read_cb()
233 item->func(item->context); in work_queue_read_cb()