Lines Matching defs:bytes
325 ssize_t bytes;
335 bytes = recv(fd, NULL, 0,
337 if (bytes == -1)
339 if ((size_t)bytes == buflen) {
341 if (bytes == 0)
342 bytes = 512;
344 bytes *= 2;
346 if (buflen < (size_t)bytes) {
348 buflen = (size_t)bytes + 1;
355 bytes = recvfrom(fd, buf, buflen, flags,
357 if (bytes == -1 || bytes == 0)
372 nlm && NLMSG_OK(nlm, (size_t)bytes);
373 nlm = NLMSG_NEXT(nlm, bytes))
1250 ssize_t bytes;
1263 bytes = recvmsg(fd, &msg, 0);
1264 if (bytes == -1)
1267 if (bytes) {
1282 return bytes;