Lines Matching defs:stream
555 static void uv__print_handles(uv_loop_t* loop, int only_active, FILE* stream) {
563 if (stream == NULL)
564 stream = stderr;
579 fprintf(stream,
590 void uv_print_all_handles(uv_loop_t* loop, FILE* stream) {
591 uv__print_handles(loop, 0, stream);
595 void uv_print_active_handles(uv_loop_t* loop, FILE* stream) {
596 uv__print_handles(loop, 1, stream);
909 int uv_read_start(uv_stream_t* stream,
912 if (stream == NULL || alloc_cb == NULL || read_cb == NULL)
915 if (stream->flags & UV_HANDLE_CLOSING)
918 if (stream->flags & UV_HANDLE_READING)
921 if (!(stream->flags & UV_HANDLE_READABLE))
924 return uv__read_start(stream, alloc_cb, read_cb);