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

  /frameworks/base/packages/PrintSpooler/jni/
com_android_printspooler_util_BitmapSerializeUtils.cpp 52 ssize_t readByteCount = read(fd, readBuffer, remainingBytes);
54 remainingBytes -= readByteCount;
55 readBuffer += readByteCount;
57 if (readByteCount == -1) {
64 } else if (readByteCount == 0 && remainingBytes > 0) {
  /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);
  /packages/experimental/PrintService2/src/foo/bar/printservice2/
MyPrintService.java 82 final int readByteCount = in.read(buffer);
83 if (readByteCount < 0) {
86 out.write(buffer, 0, readByteCount);
  /frameworks/base/core/java/android/app/
UiAutomationConnection.java 293 final int readByteCount = in.read(buffer);
294 if (readByteCount < 0) {
297 out.write(buffer, 0, readByteCount);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java 365 final int readByteCount = in.read(buffer);
366 if (readByteCount < 0) {
369 out.write(buffer, 0, readByteCount);
    [all...]
PrintSpoolerService.java 436 final int readByteCount = in.read(buffer);
437 if (readByteCount < 0) {
440 out.write(buffer, 0, readByteCount);
    [all...]
  /packages/experimental/PrintService/src/foo/bar/printservice/
MyPrintService.java 279 final int readByteCount = in.read(buffer);
280 if (readByteCount < 0) {
283 out.write(buffer, 0, readByteCount);

Completed in 748 milliseconds