| /packages/apps/Dialer/tests/src/com/android/dialer/ |
| CallDetailActivityTest.java | 283 int bytesRead; 285 while ((bytesRead = in.read(buffer)) != -1) { 286 total += bytesRead; 287 out.write(buffer, 0, bytesRead);
|
| /cts/tests/tests/net/src/android/net/http/cts/ |
| ApacheHttpClientTest.java | 130 int bytesRead = stream.read(buffer); 131 if (bytesRead < 0) { 134 numBytes += bytesRead;
|
| /frameworks/base/core/jni/android/graphics/ |
| CreateJavaOutputStreamAdaptor.cpp | 63 size_t bytesRead = 0; 104 bytesRead += n; 109 return bytesRead;
|
| /frameworks/base/rs/java/android/renderscript/ |
| Program.java | 263 int bytesRead = is.read(str, strLength, bytesLeft); 264 if (bytesRead <= 0) { 267 strLength += bytesRead;
|
| /packages/apps/Bluetooth/src/com/android/bluetooth/ |
| Utils.java | 164 int bytesRead = 0; 165 while ((bytesRead = is.read(buffer)) >= 0) { 166 os.write(buffer, 0, bytesRead);
|
| /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/ |
| ProtobufWireAdapter.java | 182 int bytesRead = 0; 187 while (bytesRead < numBytes) { 188 int inc = mInputStream.read(buf, bytesRead, numBytes - bytesRead); 192 bytesRead += inc;
|
| /hardware/libhardware_legacy/audio/ |
| AudioDumpInterface.cpp | 489 ssize_t bytesRead = fread(buffer, bytes, 1, mFile); 490 if (bytesRead >=0 && bytesRead < bytes) { 492 fread((uint8_t *)buffer+bytesRead, bytes-bytesRead, 1, mFile);
|
| /external/chromium_org/third_party/skia/src/images/ |
| SkImageDecoder_libwebp.cpp | 60 const size_t bytesRead = stream->read(dst, bytesToRead); 61 if (0 == bytesRead) { 67 bytesToRead -= bytesRead; 68 totalBytesRead += bytesRead; 217 const size_t bytesRead = stream->read(input, readBufferSize); 218 if (0 == bytesRead) { 223 status = WebPIAppend(idec, input, bytesRead);
|
| bmpdecoderhelper.cpp | 227 int bytesRead = 0; 232 bytesRead++; 249 if ((bytesRead & 1) && pos_ < len_) {
|
| /external/skia/src/images/ |
| SkImageDecoder_libwebp.cpp | 60 const size_t bytesRead = stream->read(dst, bytesToRead); 61 if (0 == bytesRead) { 67 bytesToRead -= bytesRead; 68 totalBytesRead += bytesRead; 217 const size_t bytesRead = stream->read(input, readBufferSize); 218 if (0 == bytesRead) { 223 status = WebPIAppend(idec, input, bytesRead);
|
| bmpdecoderhelper.cpp | 227 int bytesRead = 0; 232 bytesRead++; 249 if ((bytesRead & 1) && pos_ < len_) {
|
| /external/chromium_org/third_party/icu/source/io/ |
| ustdio.c | 408 int32_t bytesRead; 443 bytesRead = (int32_t)(retStr ? uprv_strlen(charBuffer) : 0); 447 bytesRead = (int32_t)fread(charBuffer, 456 mySourceEnd = charBuffer + bytesRead; 472 u_charsToUChars(mySource, myTarget, bytesRead); 473 myTarget += bytesRead;
|
| /external/icu/icu4c/source/io/ |
| ustdio.c | 408 int32_t bytesRead; 443 bytesRead = (int32_t)(retStr ? uprv_strlen(charBuffer) : 0); 447 bytesRead = (int32_t)fread(charBuffer, 456 mySourceEnd = charBuffer + bytesRead; 472 u_charsToUChars(mySource, myTarget, bytesRead); 473 myTarget += bytesRead;
|
| /frameworks/base/core/java/android/os/ |
| FileUtils.java | 190 int bytesRead; 191 while ((bytesRead = inputStream.read(buffer)) >= 0) { 192 out.write(buffer, 0, bytesRead);
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
| DeflaterInputStreamTest.java | 152 int bytesRead = 0; 153 while ((bytesRead = dis.read(result, count, 4)) != -1) { 154 count += bytesRead;
|
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar | |
| /frameworks/volley/src/com/android/volley/toolbox/ |
| DiskBasedCache.java | 117 byte[] data = streamToBytes(cis, (int) (file.length() - cis.bytesRead)); 439 private int bytesRead = 0; 449 bytesRead++; 458 bytesRead += result;
|
| /libcore/dalvik/src/main/java/dalvik/system/profiler/ |
| BinaryHprofReader.java | 266 int bytesRead = in.read(dst, offset, byteCount); 267 if (bytesRead < 0) { 270 offset += bytesRead; 271 byteCount -= bytesRead;
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
| InputStreamReaderTest.java | 450 int bytesRead = isr.read(buf, 0, buf.length); 451 assertFalse(-1 == bytesRead); 452 bytesRead = isr.read(buf, 0, buf.length); 453 assertFalse(-1 == bytesRead);
|
| /packages/apps/Launcher3/src/com/android/launcher3/ |
| LauncherBackupHelper.java | 229 int bytesRead = 0; 231 bytesRead = data.read(buffer, 0, dataSize); 232 if (DEBUG) Log.d(TAG, "read " + bytesRead + " of " + dataSize + " available"); [all...] |
| /libcore/luni/src/main/native/ |
| java_util_zip_Inflater.cpp | 122 jint bytesRead = stream->stream.next_in - initialNextIn; 127 inReadValue += bytesRead;
|
| /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
| CipherTest.java | 346 int bytesRead = is.read(input, 0, 256); 347 while (bytesRead > 0) { 348 byte[] output = c.update(input, 0, bytesRead); 352 bytesRead = is.read(input, 0, 256); 404 int bytesRead = is.read(input, 0, 256); 405 while (bytesRead > 0) { 406 byte[] output = c.update(input, 0, bytesRead); 410 bytesRead = is.read(input, 0, 256); [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
| SocketTest.java | [all...] |
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/ |
| PowerTestHostLink.java | 149 int bytesRead = streamIn.read(buffer, total, 151 if (bytesRead > 0) { 152 total += bytesRead;
|
| /external/chromium_org/third_party/icu/source/tools/genrb/ |
| genrb.c | 353 int32_t bytesRead = T_FileStream_read(poolFile, poolBundle.fBytes, poolFileSize); 355 if (bytesRead != poolFileSize) { 364 ds = udata_openSwapperForInputData(poolBundle.fBytes, bytesRead, 371 ures_swap(ds, poolBundle.fBytes, bytesRead, poolBundle.fBytes, &status);
|