Lines Matching defs:bytes
54 ssize_t bytes;
132 bytes = read(pipefds[0], buf, sizeof(buf));
133 } while (bytes == -1 && errno == EINTR);
136 if (bytes == -1) {
146 if (bytes == 0) {
167 ssize_t bytes;
196 bytes = write(pipefds[1], buf, sizeof(buf));
197 } while (bytes == -1 && errno == EINTR);
198 if (bytes == -1)
201 if (bytes != sizeof(buf))