/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/ |
SimpleDERReader.java | 73 private int readLength() throws IOException 101 int len = readLength(); 118 int len = readLength(); 135 int len = readLength(); 150 int len = readLength();
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
AbstractDictDecoder.java | 175 int readLength = 0; 179 ++readLength; 182 int bigramAddress = baseAddress + readLength; 186 readLength += 1; 190 readLength += 2; 194 readLength += 3; 204 return 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 | 461 int readLength = 0; 468 readLength = is.read(b); 470 if (readLength == -1) { 475 bos.write(b, 0, readLength); 476 position += readLength; 479 Log.v(TAG, "Receive file position = " + position + " readLength " 480 + readLength + " bytes took "
|
/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 | 500 int readLength = 0; 501 while ((readLength = is.read(dataBuffer)) != -1) { 502 fOutput.write(dataBuffer, 0, readLength);
|
/external/chromium/base/ |
pickle.cc | 220 if (!ReadLength(iter, &len)) 236 if (!ReadLength(iter, &len)) 255 if (!ReadLength(iter, &len)) 274 if (!ReadLength(iter, length)) 296 bool Pickle::ReadLength(void** iter, int* result) const {
|
pickle.h | 84 bool ReadLength(void** iter, int* result) const;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1InputStream.java | 109 protected int readLength() 112 return readLength(this, limit); 231 int length = readLength(); 320 static int readLength(InputStream s, int limit)
|
ASN1StreamParser.java | 143 int length = ASN1InputStream.readLength(_in, _limit);
|
/external/chromium/webkit/glue/ |
webcursor.cc | 82 !pickle->ReadLength(iter, &size_x) || 83 !pickle->ReadLength(iter, &size_y) ||
|
/external/chromium_org/webkit/common/cursors/ |
webcursor.cc | 90 !iter->ReadLength(&size_x) || 91 !iter->ReadLength(&size_y) ||
|
/external/chromium_org/ui/base/clipboard/ |
custom_data_helper.cc | 33 if (!ReadLength(iter, &len))
|
/external/chromium_org/base/ |
pickle.h | 46 bool ReadLength(int* result) WARN_UNUSED_RESULT { 206 bool ReadLength(PickleIterator* iter, 208 return iter->ReadLength(result);
|
/external/chromium/crypto/ |
rsa_private_key.cc | 325 bool PrivateKeyInfoCodec::ReadLength(uint8** pos, uint8* end, uint32* result) { 361 return ReadLength(pos, end, length);
|
rsa_private_key.h | 136 bool ReadLength(uint8** pos, uint8* end, uint32* result);
|
/external/chromium_org/crypto/ |
rsa_private_key.cc | 319 bool PrivateKeyInfoCodec::ReadLength(uint8** pos, uint8* end, uint32* result) { 355 return ReadLength(pos, end, length);
|
rsa_private_key.h | 133 bool ReadLength(uint8** pos, uint8* end, uint32* result);
|
/external/chromium_org/net/cert/ |
ct_serialization.cc | 66 bool ReadLength(size_t prefix_length, base::StringPiece* in, size_t* out) { 94 if (!ReadLength(prefix_length, in, &length))
|
/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/chromium_org/ipc/ |
ipc_message_utils.h | 316 // ReadLength() checks for < 0 itself. 317 if (!m->ReadLength(iter, &size)) 350 if (!m->ReadLength(iter, &size)) 652 if (!m->ReadLength(iter, &size))
|
/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/chromium_org/chrome/browser/renderer_host/pepper/ |
pepper_flash_clipboard_message_filter.cc | 60 if (!iter->ReadLength(&skip_length))
|