HomeSort by relevance Sort by last modified time
    Searched full:readlength (Results 1 - 18 of 18) 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);
  /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 444 int readLength = 0;
451 readLength = is.read(b);
453 if (readLength == -1) {
458 bos.write(b, 0, readLength);
459 position += readLength;
462 Log.v(TAG, "Receive file position = " + position + " readLength "
463 + readLength + " bytes took "
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 87 protected int readLength()
90 return readLength(this, limit);
201 int length = readLength();
285 static int readLength(InputStream s, int limit)
DERInputStream.java 27 protected int readLength()
269 int length = readLength();
ASN1StreamParser.java 66 int length = ASN1InputStream.readLength(_in, _limit);
BERInputStream.java 93 int length = readLength();
  /external/chromium/base/
pickle.cc 133 bool Pickle::ReadLength(void** iter, int* result) const {
216 if (!ReadLength(iter, &len))
232 if (!ReadLength(iter, &len))
251 if (!ReadLength(iter, &len))
284 if (!ReadLength(iter, length))
pickle.h 83 bool ReadLength(void** iter, int* result) const;
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 333 int readLength;
334 while ((readLength = is.read(buffer)) != -1) {
335 os.write(buffer, 0, readLength);
351 int readLength = 0;
352 while ((readLength = is.read(dataBuffer)) != -1) {
353 fOutput.write(dataBuffer, 0, readLength);
BitmapFactoryTest.java 261 int readLength = 0;
262 while ((readLength = is.read(dataBuffer)) != -1) {
263 fOutput.write(dataBuffer, 0, readLength);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 700 int readLength = outputBufferSize;
702 readLength = vcardStringLen - position;
704 String subStr = vcardString.substring(position, position + readLength);
706 outputStream.write(subStr.getBytes(), 0, readLength);
713 Log.v(TAG, "Sending vcard String position = " + position + " readLength "
714 + readLength + " bytes took " + (System.currentTimeMillis() - timestamp)
717 position += readLength;
    [all...]
  /external/chromium/base/crypto/
rsa_private_key.cc 99 bool PrivateKeyInfoCodec::ReadLength(uint8** pos, uint8* end, uint32* result) {
135 return ReadLength(pos, end, length);
rsa_private_key.h 122 bool ReadLength(uint8** pos, uint8* end, uint32* result);
  /hardware/ril/mock-ril/src/cpp/
js_support.cpp 117 size_t readLength = fread(buffer, 1, fileLength, f);
118 if (readLength != fileLength) {
  /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;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DeviceMonitor.java 187 int length = readLength(mMainAdbConnection, mLengthBuffer);
633 int length = readLength(socket, mLengthBuffer2);
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 3391 milliseconds