HomeSort by relevance Sort by last modified time
    Searched full:readlength (Results 1 - 25 of 69) 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...]
  /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 "
  /external/smali/util/src/main/java/org/jf/util/
Utf8Utils.java 188 * @param readLength If non-null, the first element will contain the number of bytes read after the method exits
192 @Nullable int[] readLength) {
266 if (readLength != null && readLength.length > 0) {
267 readLength[0] = at - start;
268 readLength[0] = at - start;
  /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);
  /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)
ASN1StreamParser.java 146 int length = ASN1InputStream.readLength(_in, _limit);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
WspTypeDecoder.java 431 int readLength = mDataLength;
438 mDataLength += readLength;
447 int readLength = mDataLength;
453 mDataLength += readLength;
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_jpx_opj.cpp 38 OPJ_SIZE_T readlength = nb_bytes < bufferLength ? nb_bytes : bufferLength; local
39 memcpy(p_buffer, &srcData->src_data[srcData->offset], readlength); local
40 srcData->offset += readlength;
41 return readlength;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PipelinedMsgParser.java 321 int readlength = inputStream.read(message_body, local
323 if (readlength > 0) {
324 nread += readlength;
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
jobb.jar 
ddmlib.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/24.4.0-alpha1/
ddmlib-24.4.0-alpha1.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 

Completed in 1405 milliseconds

1 2 3