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

  /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);
  /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)
ASN1StreamParser.java 140 int length = ASN1InputStream.readLength(_in, _limit);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 383 int readLength = 0;
391 readLength = a.read(buffer, 0, outputBufferSize);
401 outputStream.write(buffer, 0, readLength);
403 position += readLength;
439 readLength = a.read(buffer, 0, outputBufferSize);
440 outputStream.write(buffer, 0, readLength);
450 position += readLength;
453 + " 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 "
  /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);
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);
BitmapFactoryTest.java 360 int readLength = 0;
361 while ((readLength = is.read(dataBuffer)) != -1) {
362 fOutput.write(dataBuffer, 0, readLength);
  /frameworks/base/telephony/java/com/android/internal/telephony/
WspTypeDecoder.java 431 int readLength = dataLength;
438 dataLength += readLength;
447 int readLength = dataLength;
453 dataLength += readLength;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DeviceMonitor.java 187 int length = readLength(mMainAdbConnection, mLengthBuffer);
647 int length = readLength(socket, mLengthBuffer2);
    [all...]
  /hardware/ril/mock-ril/src/cpp/
js_support.cpp 117 size_t readLength = fread(buffer, 1, fileLength, f);
118 if (readLength != fileLength) {
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 341 milliseconds