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

1 2 3

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
MemoryDataStore.java 65 int readLength = Math.min(b.length, buf.length - position);
66 if (readLength <= 0) {
72 System.arraycopy(buf, position, b, 0, readLength);
73 position += readLength;
74 return readLength;
78 int readLength = Math.min(len, buf.length - position);
79 if (readLength <= 0) {
85 System.arraycopy(buf, position, b, 0, readLength);
86 position += readLength;
87 return readLength;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 109 protected int readLength()
112 return readLength(this, limit);
237 int length = readLength();
326 static int readLength(InputStream s, int limit)
  /cts/tests/tests/graphics/src/android/graphics/cts/
TypefaceTest.java 175 int readLength = 0;
176 while ((readLength = is.read(dataBuffer)) != -1) {
177 fOutput.write(dataBuffer, 0, readLength);
BitmapRegionDecoderTest.java 361 int readLength;
362 while ((readLength = is.read(buffer)) != -1) {
363 os.write(buffer, 0, readLength);
379 int readLength = 0;
380 while ((readLength = is.read(dataBuffer)) != -1) {
381 fOutput.write(dataBuffer, 0, readLength);
BitmapFactoryTest.java 627 int readLength = 0;
628 while ((readLength = is.read(dataBuffer)) != -1) {
629 fOutput.write(dataBuffer, 0, readLength);
  /cts/tests/tests/content/src/android/content/res/cts/
AssetFileDescriptorTest.java 103 int readLength = 0;
105 while ((readByte != FILE_END) && (readLength < FILE_DATA.length)) {
106 readLength += readByte;
108 readLength, FILE_DATA.length - readLength);
110 assertEquals(FILE_DATA.length, readLength);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 395 int readLength = 0;
403 readLength = readFully(a, buffer, outputBufferSize);
413 outputStream.write(buffer, 0, readLength);
415 position += readLength;
451 readLength = a.read(buffer, 0, outputBufferSize);
452 outputStream.write(buffer, 0, readLength);
462 position += readLength;
465 + " readLength " + readLength + " bytes took "
BluetoothOppObexServerSession.java 465 int readLength = 0;
472 readLength = is.read(b);
474 if (readLength == -1) {
479 bos.write(b, 0, readLength);
480 position += readLength;
483 Log.v(TAG, "Receive file position = " + position + " readLength "
484 + readLength + " bytes took "
  /prebuilts/devtools/tools/lib/
jobb.jar 
ddmlib.jar 
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.0/
ddmlib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.2/
ddmlib-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.0/
ddmlib-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.1/
ddmlib-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.3/
ddmlib-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.0/
ddmlib-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.1/
ddmlib-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.3/
ddmlib-22.7.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.8.0/
ddmlib-22.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.9.2/
ddmlib-22.9.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.0.1/
ddmlib-23.0.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.0.2/
ddmlib-23.0.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/23.1.0/
ddmlib-23.1.0.jar 

Completed in 311 milliseconds

1 2 3