Lines Matching defs:bytes
153 ssize_t buflen = 0, bytes;
158 bytes = recv(fd, NULL, 0,
160 if (bytes == -1) {
168 } else if (bytes == buflen) {
170 if (bytes == 0)
171 bytes = 512;
173 bytes *= 2;
175 if (buflen < bytes) {
177 buflen = bytes + 1;
183 bytes = recv(fd, buf, buflen, flags);
184 if (bytes == -1) {
194 NLMSG_OK(nlm, (size_t)bytes);
195 nlm = NLMSG_NEXT(nlm, bytes))