HomeSort by relevance Sort by last modified time
    Searched defs:bytesRead (Results 101 - 125 of 186) sorted by null

1 2 3 45 6 7 8

  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java     [all...]
RopeByteString.java 891 int bytesRead = currentPieceOffsetInRope + currentPieceIndex;
892 return RopeByteString.this.size() - bytesRead;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/common/
xmlconfig.c 921 int bytesRead;
927 bytesRead = read (fd, buffer, BUF_SIZE);
928 if (bytesRead == -1) {
933 status = XML_ParseBuffer (p, bytesRead, bytesRead == 0);
938 if (bytesRead == 0)
    [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 853 ssize_t bytesRead = 0;
901 bytesRead += n;
912 return bytesRead;
    [all...]
PlaylistFetcher.cpp 881 ssize_t bytesRead;
883 bytesRead = mSession->fetchFile(
886 if (bytesRead < 0) {
887 status_t err = bytesRead;
897 buffer->setRange(size - bytesRead, bytesRead);
944 tsBuffer->setRange(tsBuffer->offset(), tsBuffer->size() + bytesRead);
963 } while (bytesRead != 0);
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldRandomAccessFileTest.java 299 int bytesRead = raf.read(rbuf);
301 testLength, bytesRead);
305 bytesRead = raf.read(rbuf);
306 assertTrue("Test 3: EOF (-1) expected. ", bytesRead == -1);
310 bytesRead = raf.read(rbuf);
321 int bytesRead;
330 bytesRead = raf.read(rbuf, 10, testLength / 2);
332 testLength / 2, bytesRead);
338 bytesRead = raf.read(rbuf, 0, testLength);
340 testLength - (testLength / 2), bytesRead);
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileIOInterruptTest.java 463 int bytesRead = inputStream.read(buffer);
464 fail("This isn't supposed to happen: read() returned: " + 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...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessage.java 375 int bytesRead;
377 while ((bytesRead = mInStream.read(data, offset, length-offset)) != (length - offset)) {
378 if(bytesRead == -1)
380 offset += bytesRead;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
org.eclipse.equinox.simpleconfigurator_1.0.200.v20100503.jar 
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
  /frameworks/base/core/jni/
android_hardware_camera2_DngCreator.cpp 475 ssize_t bytesRead = mInput->read(rowBytes, rowFillAmt, rowSize);
476 if (bytesRead <= 0) {
477 if (bytesRead == NOT_ENOUGH_DATA || bytesRead == 0) {
481 bytesRead = NOT_ENOUGH_DATA;
488 return bytesRead;
490 rowFillAmt += bytesRead;
491 rowSize -= bytesRead;
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SocketTest.java     [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTest.java     [all...]
  /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...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.simpleconfigurator_1.0.400.v20130327-2119.jar 
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.simpleconfigurator_1.0.400.v20130327-2119.jar 
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /cts/tests/tests/media/src/android/media/cts/
Vp8CodecTestBase.java 502 int bytesRead = srcStream.read(srcFrame);
503 if (bytesRead != srcFrame.length) {
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/test/
omx_vdec_test.cpp     [all...]
  /frameworks/av/services/audioflinger/
Threads.cpp     [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/
omx_vdec_test.cpp     [all...]

Completed in 2371 milliseconds

1 2 3 45 6 7 8