HomeSort by relevance Sort by last modified time
    Searched defs:readLength (Results 1 - 10 of 10) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 101 protected int readLength()
104 return readLength(this, limit);
215 int length = readLength();
304 static int readLength(InputStream s, int limit)
  /cts/tests/tests/graphics/src/android/graphics/cts/
TypefaceTest.java 229 int readLength = 0;
230 while ((readLength = is.read(dataBuffer)) != -1) {
231 fOutput.write(dataBuffer, 0, readLength);
BitmapFactoryTest.java 360 int readLength = 0;
361 while ((readLength = is.read(dataBuffer)) != -1) {
362 fOutput.write(dataBuffer, 0, readLength);
BitmapRegionDecoderTest.java 369 int readLength;
370 while ((readLength = is.read(buffer)) != -1) {
371 os.write(buffer, 0, readLength);
387 int readLength = 0;
388 while ((readLength = is.read(dataBuffer)) != -1) {
389 fOutput.write(dataBuffer, 0, readLength);
  /hardware/ril/mock-ril/src/cpp/
js_support.cpp 117 size_t readLength = fread(buffer, 1, fileLength, f);
118 if (readLength != fileLength) {
  /cts/tests/tests/content/src/android/content/res/cts/
AssetFileDescriptorTest.java 125 int readLength = 0;
127 while ((readByte != FILE_END) && (readLength < FILE_DATA.length)) {
128 readLength += readByte;
130 readLength, FILE_DATA.length - readLength);
132 assertEquals(FILE_DATA.length, readLength);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 393 int readLength = 0;
401 readLength = readFully(a, buffer, outputBufferSize);
411 outputStream.write(buffer, 0, readLength);
413 position += readLength;
449 readLength = a.read(buffer, 0, outputBufferSize);
450 outputStream.write(buffer, 0, readLength);
460 position += readLength;
463 + " readLength " + readLength + " bytes took "
BluetoothOppObexServerSession.java 447 int readLength = 0;
454 readLength = is.read(b);
456 if (readLength == -1) {
461 bos.write(b, 0, readLength);
462 position += readLength;
465 Log.v(TAG, "Receive file position = " + position + " readLength "
466 + readLength + " bytes took "
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DeviceMonitor.java 187 int length = readLength(mMainAdbConnection, mLengthBuffer);
647 int length = readLength(socket, mLengthBuffer2);
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 867 milliseconds