Lines Matching defs:bytes
146 ssize_t buflen = 0, bytes;
151 bytes = recv(fd, NULL, 0,
153 if (bytes == -1) {
161 } else if (bytes == buflen) {
163 if (bytes == 0)
164 bytes = 512;
166 bytes *= 2;
168 if (buflen < bytes) {
170 buflen = bytes + 1;
176 bytes = recv(fd, buf, buflen, flags);
177 if (bytes == -1) {
187 NLMSG_OK(nlm, (size_t)bytes);
188 nlm = NLMSG_NEXT(nlm, bytes))