Lines Matching defs:read
1054 /* For datagram sockets we can read if there is something in
1074 * queue can be read.
1080 /* If there is something in the queue then we can read. */
1097 * terminated should also be considered read, and we check the
1125 * EPOLLOUT|EPOLLWRNORM when peer is closed and nothing to read,
2033 ssize_t read;
2045 read = transport->stream_dequeue(vsk, msg, len - copied, flags);
2046 if (read < 0) {
2047 err = read;
2051 copied += read;
2053 err = transport->notify_recv_post_dequeue(vsk, target, read,
2058 if (read >= target || flags & MSG_PEEK)
2061 target -= read;