Searched defs:bytesread (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/lib/libc/port/gen/
H A Dattrat.c179 int bytesread; local
192 bytesread = read(fd, nv_response, nv_responselen);
193 if (bytesread != nv_responselen) {
/osnet-11/usr/src/lib/libsasl/lib/
H A Dsaslutil.c355 ssize_t bytesread = 0; local
359 bytesread = read(fd, buf, bytesleft);
360 if(bytesread == -1 && errno == EINTR) continue;
361 else if(bytesread <= 0) break;
362 bytesleft -= bytesread;
363 buf += bytesread;
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dxdr.c538 uint64_t bytesread; local
580 * 'bytesread' is what we have already read. sp is NULL
583 bytesread = 0;
585 block = MIN(size - bytesread, FRAGMENT);
587 * allocate enough for 'bytesread + block' bytes and
590 newsp = realloc(sp, bytesread + block + 1);
597 if (!xdr_opaque(xdrs, &sp[bytesread], block)) {
601 bytesread += block;
602 } while (bytesread < size);
604 sp[bytesread]
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dsv.c6177 I32 bytesread; local
6190 bytesread = PerlLIO_read(PerlIO_fileno(fp), buffer, recsize);
6192 bytesread = PerlIO_read(fp, buffer, recsize);
6194 if (bytesread < 0)
6195 bytesread = 0;
6196 SvCUR_set(sv, bytesread += append);
6197 buffer[bytesread] = '\0';

Completed in 37 milliseconds