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 409 final int readByteCount = in.read(buffer);
410 if (readByteCount < 0) {
413 out.write(buffer, 0, readByteCount);
    [all...]
PrintJobConfigActivity.java     [all...]

Completed in 259 milliseconds