Home | History | Annotate | Download | only in adb

Lines Matching refs:bytes_read

444             int bytes_read = adb_read(lfd, sbuf.data, max - sizeof(SyncRequest));
445 if (bytes_read == -1) {
449 } else if (bytes_read == 0) {
453 sbuf.size = bytes_read;
454 WriteOrDie(lpath, rpath, &sbuf, sizeof(SyncRequest) + bytes_read);
456 RecordBytesTransferred(bytes_read);
457 bytes_copied += bytes_read;