Searched refs:bytes_read (Results 1 - 14 of 14) sorted by relevance

/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfscat.c338 s64 bytes_read, written; local
365 bytes_read = ntfs_attr_mst_pread(attr, offset, 1, block_size, buffer);
366 if (bytes_read > 0)
367 bytes_read *= block_size;
369 bytes_read = ntfs_attr_pread(attr, offset, bufsize, buffer);
371 //ntfs_log_info("read %lld bytes\n", bytes_read);
372 if (bytes_read == -1) {
376 if (!bytes_read)
379 written = fwrite(buffer, 1, bytes_read, stdout);
380 if (written != bytes_read) {
[all...]
H A Dntfsinfo.c990 s64 data_size, bytes_read; local
998 bytes_read = ntfs_rl_pread(vol, rl, 0,
1000 if (bytes_read != data_size) {
1923 s64 bytes_read; local
1930 bytes_read = ntfs_rl_pread(vol, rl, 0, data_size, buf);
1931 if (bytes_read != data_size) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/FTP/
H A Ddataconn.pm115 sub bytes_read { subroutine
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dcrypto.c1411 s64 bytes_read, offset, total, length; local
1459 bytes_read = ntfs_rl_pread(na->ni->vol, na->rl, offset,
1461 if (!bytes_read)
1463 if (bytes_read != NTFS_EFS_SECTOR_SIZE) {
1465 "bytes", "ntfs_crypto_attr_pread", bytes_read);
1469 offset)) < bytes_read) {
1472 i, (long long)bytes_read,
1489 offset += bytes_read;
H A Drunlist.c1038 s64 bytes_read, to_read, ofs, total; local
1073 bytes_read = ntfs_pread(vol->u.dev, (rl->lcn <<
1076 if (bytes_read > 0) {
1077 total += bytes_read;
1078 count -= bytes_read;
1079 b = (u8*)b + bytes_read;
1083 if (bytes_read == (s64)-1 && errno == EINTR)
1085 if (bytes_read == (s64)-1)
H A Dvolume.c730 int bytes_read, ret = -1; local
750 bytes_read = ntfs_attr_pread(na, 0, NTFS_HIBERFILE_HEADER_SIZE, buf);
751 if (bytes_read == -1) {
755 if (bytes_read < NTFS_HIBERFILE_HEADER_SIZE) {
H A Dattrib.c4038 s64 arec_size, bytes_read; local
4146 bytes_read = ntfs_rl_pread(vol, na->rl, 0, na->initialized_size,
4148 if (bytes_read != na->initialized_size) {
4149 if (bytes_read >= 0)
/osnet-11/usr/src/cmd/hal/hald/
H A Dhald.c263 gsize bytes_read; local
267 g_io_channel_read_chars (source, data, 1, &bytes_read, &err)) {
/osnet-11/usr/src/lib/libsmedia/plugins/scsi/common/
H A Ds_generic.c300 int32_t ret_val, bytes_read; local
353 bytes_read = retraw_read->nbytes;
355 return (bytes_read);
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_pool.c3726 zpool_history_unpack(char *buf, uint64_t bytes_read, uint64_t *leftover, argument
3733 while (bytes_read > sizeof (reclen)) {
3739 if (bytes_read < sizeof (reclen) + reclen)
3745 bytes_read -= sizeof (reclen) + reclen;
3757 *leftover = bytes_read;
3776 uint64_t bytes_read = sizeof (buf); local
3779 if ((err = get_history(zhp, buf, &off, &bytes_read)) != 0)
3783 if (!bytes_read)
3786 if ((err = zpool_history_unpack(buf, bytes_read,
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftKeystoreUtil.c1191 * in the argument "bytes_read"
1196 read_obj_data(int old_fd, char **buf, ssize_t *bytes_read) argument
1232 *bytes_read = nread;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/
H A DFile.pm687 my $bytes_read = read $fh, my($data), $readsize;
694 $spos += $bytes_read;
695 $dpos += $bytes_read;
696 $len -= $bytes_read if defined $len;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DFTP.pm1661 =item bytes_read ()
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DCGI.pm6330 my ($filename, $buffer, $bytes_read, $data) = @_;
6331 print "Read $bytes_read bytes of $filename\n";

Completed in 106 milliseconds