HomeSort by relevance Sort by last modified time
    Searched defs:readByteCount (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/print/
PrintFileDocumentAdapter.java 126 final int readByteCount = in.read(buffer);
127 if (readByteCount < 0) {
130 out.write(buffer, 0, readByteCount);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
RemotePrintDocumentAdapter.java 109 final int readByteCount = in.read(buffer);
110 if (readByteCount < 0) {
113 out.write(buffer, 0, readByteCount);
PrintSpoolerService.java 408 final int readByteCount = in.read(buffer);
409 if (readByteCount < 0) {
412 out.write(buffer, 0, readByteCount);
    [all...]
PrintJobConfigActivity.java 802 final int readByteCount = in.read(buffer);
803 if (readByteCount < 0) {
806 out.write(buffer, 0, readByteCount);
    [all...]

Completed in 232 milliseconds