Lines Matching defs:to_read
1007 size_t read = 0, to_read;
1020 to_read = 2;
1021 recv_buf(fd, buf + read, to_read, 0, to_read);
1022 read += to_read;
1028 to_read = strlen(HELLO_STR WORLD_STR) - read;
1029 recv_buf(fd, buf + read, to_read, 0, to_read);
1030 read += to_read;
1033 to_read = sizeof(buf) - read;
1034 recv_buf(fd, buf + read, to_read, MSG_DONTWAIT, -EAGAIN);