Searched refs:readCount (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/content/
H A DAssetTest.java39 int readCount;
41 while ((readCount = is.read(buffer, 0, buffer.length)) > 0) {
42 for (int i = 0; i < readCount; i++) {
51 readCount = is.read(buffer, 0, buffer.length);
52 assertEquals("Reading end of buffer: expected readCount=-1 but got " + readCount,
53 -1, readCount);
55 readCount = is.read(buffer, buffer.length, 0);
56 assertEquals("Reading end of buffer length 0: expected readCount=0 but got " + readCount,
[all...]
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfUtils.cpp34 const int readCount = pread(fd, outBuffer, size, position); local
35 if (readCount < 0) {
/frameworks/base/media/native/midi/
H A Dmidi.cpp173 ssize_t readCount = read(port->ufd, readBuffer, sizeof(readBuffer)); local
174 if (readCount == EINTR) {
177 if (readCount < 1) {
186 if (message->opcode == AMIDI_OPCODE_DATA && readCount >= AMIDI_PACKET_OVERHEAD) {
187 dataSize = readCount - AMIDI_PACKET_OVERHEAD;
191 message->timestamp = *(uint64_t*)(readBuffer + readCount - sizeof(uint64_t));
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 313 milliseconds