Lines Matching defs:bytes
35 ssize_t bytes = write(fd, buf, sizeof(buf));
36 if (bytes <= 0) {
80 ssize_t bytes = readlinkat(fd, linkpath, rbuf, sizeof(rbuf));
81 if (bytes != strlen(rbuf)) {
82 t_error("%s failed: bytes = %ld\n", __func__, bytes);
132 ssize_t bytes = readlinkat(fd, linkfilename, rbuf, sizeof(rbuf));
133 if (bytes != strlen(rbuf)) {
134 t_error("%s failed: bytes = %ld\n", __func__, bytes);
152 ssize_t bytes = readlinkat(-1, NULL, NULL, 0);
153 if (bytes >= 0) {
154 t_error("%s failed: bytes = %ld\n", __func__, bytes);