Lines Matching defs:count
84 ssize_t count;
86 while ((count = read(fd, buffer, sizeof(buffer) - 1)) > 0) {
87 buffer[count] = '\0';
99 if (iter != buffer + count)
104 if (iter < buffer + count) {
109 ATF_REQUIRE(count == 0);
128 ssize_t count;
129 while ((count = read(fd, buffer, sizeof(buffer))) > 0 &&
130 count <= remaining) {
131 if (memcmp(pos, buffer, count) != 0) {
135 remaining -= count;
136 pos += count;
139 return count == 0 && remaining == 0;