Lines Matching refs:stream
554 static void uv__print_handles(uv_loop_t* loop, int only_active, FILE* stream) { in uv__print_handles() argument
562 if (stream == NULL) in uv__print_handles()
563 stream = stderr; in uv__print_handles()
578 fprintf(stream, in uv__print_handles()
589 void uv_print_all_handles(uv_loop_t* loop, FILE* stream) { in uv_print_all_handles() argument
590 uv__print_handles(loop, 0, stream); in uv_print_all_handles()
594 void uv_print_active_handles(uv_loop_t* loop, FILE* stream) { in uv_print_active_handles() argument
595 uv__print_handles(loop, 1, stream); in uv_print_active_handles()
895 int uv_read_start(uv_stream_t* stream, in uv_read_start() argument
898 if (stream == NULL || alloc_cb == NULL || read_cb == NULL) in uv_read_start()
901 if (stream->flags & UV_HANDLE_CLOSING) in uv_read_start()
904 if (stream->flags & UV_HANDLE_READING) in uv_read_start()
907 if (!(stream->flags & UV_HANDLE_READABLE)) in uv_read_start()
910 return uv__read_start(stream, alloc_cb, read_cb); in uv_read_start()