HomeSort by relevance Sort by last modified time
    Searched refs:readByteCount (Results 1 - 8 of 8) 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/jni/
com_android_printspooler_util_BitmapSerializeUtils.cpp 52 ssize_t readByteCount = read(fd, readBuffer, remainingBytes);
53 if (readByteCount == -1) {
61 remainingBytes -= readByteCount;
62 readBuffer += readByteCount;
  /frameworks/base/core/java/android/app/
UiAutomationConnection.java 249 final int readByteCount = in.read(buffer);
250 if (readByteCount < 0) {
253 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);
  /packages/experimental/PrintService/src/foo/bar/printservice/
MyPrintService.java 242 final int readByteCount = in.read(buffer);
243 if (readByteCount < 0) {
246 out.write(buffer, 0, readByteCount);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java 357 final int readByteCount = in.read(buffer);
358 if (readByteCount < 0) {
361 out.write(buffer, 0, readByteCount);
929 final int readByteCount = in.read(buffer)
    [all...]
PrintSpoolerService.java 410 final int readByteCount = in.read(buffer);
411 if (readByteCount < 0) {
414 out.write(buffer, 0, readByteCount);
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 198 milliseconds