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

1 2 3 4 5 6

  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
jsoncheckertest.cpp 45 size_t readLength = fread(json, 1, length, fp);
46 json[readLength] = '\0';
filestreamtest.cpp 48 size_t readLength = fread(json_, 1, length_, fp);
49 json_[readLength] = '\0';
prettywritertest.cpp 155 size_t readLength = fread(json, 1, size, fp);
156 json[readLength] = '\0';
encodedstreamtest.cpp 73 size_t readLength = fread(buffer, 1, *outLength, fp);
74 buffer[readLength] = '\0';
  /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 171 int readLength = 0;
172 while ((readLength = is.read(dataBuffer)) != -1) {
173 fOutput.write(dataBuffer, 0, readLength);
BitmapRegionDecoderTest.java 438 int readLength;
439 while ((readLength = is.read(buffer)) != -1) {
440 os.write(buffer, 0, readLength);
456 int readLength = 0;
457 while ((readLength = is.read(dataBuffer)) != -1) {
458 fOutput.write(dataBuffer, 0, readLength);
BitmapFactoryTest.java     [all...]
  /external/dng_sdk/source/
dng_info.cpp 1436 uint32 readLength = Min_uint32 (fShared->fDNGPrivateDataCount,
1439 stream.Get (buffer, readLength);
1441 buffer [readLength] = 0;
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
AssetFileDescriptorTest.java 130 int readLength = 0;
132 while ((readByte != FILE_END) && (readLength < FILE_DATA.length)) {
133 readLength += readByte;
135 readLength, FILE_DATA.length - readLength);
137 assertEquals(FILE_DATA.length, readLength);
  /external/webrtc/webrtc/modules/media_file/
media_file_utility.cc 363 int readLength;
368 readLength = wav.Read(dummy, _readSizeBytes);
369 if(readLength == static_cast<int>(_readSizeBytes))
    [all...]
  /frameworks/minikin/libs/minikin/
FontCollection.cpp 410 size_t readLength = 0;
411 U16_NEXT(string, readLength, string_size, nextCh);
416 nextUtf16Pos = readLength;
417 if (readLength < string_size) {
418 U16_NEXT(string, readLength, string_size, nextCh);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 395 int readLength = 0;
405 readLength = readFully(a, buffer, outputBufferSize);
415 outputStream.write(buffer, 0, readLength);
417 position += readLength;
442 readLength = a.read(buffer, 0, outputBufferSize);
443 outputStream.write(buffer, 0, readLength);
453 position += readLength;
456 + " readLength " + readLength + " bytes took "
BluetoothOppObexServerSession.java 448 int readLength = 0;
455 readLength = is.read(b);
457 if (readLength == -1) {
462 bos.write(b, 0, readLength);
463 position += readLength;
467 Log.v(TAG, "Receive file position = " + position + " readLength "
468 + readLength + " bytes took "
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.4.0-beta3/
jobb-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.4.0-beta6/
jobb-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.5.0/
jobb-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0/
jobb-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha1/
jobb-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha3/
jobb-25.0.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha5/
jobb-25.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha7/
jobb-25.0.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha9/
jobb-25.0.0-alpha9.jar 

Completed in 5308 milliseconds

1 2 3 4 5 6