Searched refs:readByteCount (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/PrintSpooler/jni/
H A Dcom_android_printspooler_util_BitmapSerializeUtils.cpp52 ssize_t readByteCount = read(fd, readBuffer, remainingBytes); local
54 remainingBytes -= readByteCount;
55 readBuffer += readByteCount;
57 if (readByteCount == -1) {
64 } else if (readByteCount == 0 && remainingBytes > 0) {
/frameworks/base/core/java/android/print/
H A DPrintFileDocumentAdapter.java126 final int readByteCount = in.read(buffer);
127 if (readByteCount < 0) {
130 out.write(buffer, 0, readByteCount);
/frameworks/base/core/java/android/app/
H A DUiAutomationConnection.java293 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/
H A DRemotePrintDocument.java364 final int readByteCount = in.read(buffer);
365 if (readByteCount < 0) {
368 out.write(buffer, 0, readByteCount);
1038 final int readByteCount = in.read(buffer);
1039 if (readByteCount < 0) {
1042 out.write(buffer, 0, readByteCount);
H A DPrintSpoolerService.java436 final int readByteCount = in.read(buffer);
437 if (readByteCount < 0) {
440 out.write(buffer, 0, readByteCount);

Completed in 300 milliseconds