Lines Matching defs:count
92 ssize_t count, expected;
124 while (((count = sendmsg(fd, &msgh, MSG_NOSIGNAL)) < 0)
126 if (count < 0 || count != expected)
141 ssize_t count;
153 while (((count = readv(fd, resp_hdr, 3)) < 0) && (errno == EINTR)) ;
154 if (count != (sizeof(func) + sizeof(data_size) + sizeof(*ret_val))) {
171 while (((count = readv(fd, &resp_data, 1))) < 0 && (errno == EINTR)) ;
172 if (count < 0 || (uint32_t) count != data_size ||