Lines Matching refs:stream
521 static void uv__print_handles(uv_loop_t* loop, int only_active, FILE* stream) {
542 fprintf(stream,
553 void uv_print_all_handles(uv_loop_t* loop, FILE* stream) {
554 uv__print_handles(loop, 0, stream);
558 void uv_print_active_handles(uv_loop_t* loop, FILE* stream) {
559 uv__print_handles(loop, 1, stream);
851 int uv_read_start(uv_stream_t* stream,
854 if (stream == NULL || alloc_cb == NULL || read_cb == NULL)
857 if (stream->flags & UV_HANDLE_CLOSING)
860 if (stream->flags & UV_HANDLE_READING)
863 if (!(stream->flags & UV_HANDLE_READABLE))
866 return uv__read_start(stream, alloc_cb, read_cb);