Lines Matching refs:NULL
68 CHECK(name != NULL); in thread_new_sized()
87 pthread_create(&ret->pthread, NULL, run_thread, &start); in thread_new_sized()
101 return NULL; in thread_new_sized()
120 CHECK(thread != NULL); in thread_join()
123 pthread_join(thread->pthread, NULL); in thread_join()
127 CHECK(thread != NULL); in thread_post()
128 CHECK(func != NULL); in thread_post()
144 CHECK(thread != NULL); in thread_stop()
178 CHECK(thread != NULL); in thread_is_self()
183 CHECK(thread != NULL); in thread_get_reactor()
188 CHECK(thread != NULL); in thread_name()
193 CHECK(start_arg != NULL); in run_thread()
198 CHECK(thread != NULL); in run_thread()
204 return NULL; in run_thread()
217 reactor_register(thread->reactor, fd, context, work_queue_read_cb, NULL); in run_thread()
240 return NULL; in run_thread()
244 CHECK(context != NULL); in work_queue_read_cb()