Searched refs:bytesread (Results 1 – 4 of 4) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/ |
| H A D | RNBSocket.cpp | 294 ssize_t bytesread = read(m_fd, buf, sizeof(buf)); in Read() local 295 if (bytesread <= 0) in Read() 298 p.append(buf, bytesread); in Read() 302 (uint64_t)bytesread); in Read() 306 if (bytesread == 0) { in Read() 309 } else if (bytesread == -1) { in Read()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/IO-Zlib/ |
| H A D | Zlib.pm | 502 my $bytesread = $self->{'file'}->gzread(substr($$bufref,$offset),$nbytes); 504 return undef if $bytesread < 0; 506 return $bytesread;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/ |
| H A D | Tarzip.pm | 212 my($line,$bytesread); 213 $bytesread = $gz->gzreadline($line); 214 return undef if $bytesread <= 0;
|
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | sv.c | 8638 SSize_t bytesread; 8661 bytesread = PerlLIO_read(fd, buffer, recsize); 8668 bytesread = PerlIO_read(fp, buffer, recsize); 8673 if (PerlIO_isutf8(fp) && bytesread > 0) { 8674 char *bend = buffer + bytesread; 8719 buffer = SvGROW(sv, append + bytesread + readsize + 1) + append; 8720 bend = buffer + bytesread; 8736 bytesread += morebytesread; 8737 bend = buffer + bytesread; 8744 if (bytesread < 8578 SSize_t bytesread; global() local [all...] |