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()
180 CHECK(thread != NULL); in thread_is_self()
185 CHECK(thread != NULL); in thread_get_reactor()
190 CHECK(thread != NULL); in thread_name()
195 CHECK(start_arg != NULL); in run_thread()
200 CHECK(thread != NULL); in run_thread()
207 return NULL; in run_thread()
220 reactor_register(thread->reactor, fd, context, work_queue_read_cb, NULL); in run_thread()
243 return NULL; in run_thread()
247 CHECK(context != NULL); in work_queue_read_cb()