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

1 2 3 4 5 6

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ConstructedOctetStream.java 40 int totalRead = 0;
44 int numRead = _currentStream.read(b, off + totalRead, len - totalRead);
48 totalRead += numRead;
50 if (totalRead == len)
52 return totalRead;
62 return totalRead < 1 ? -1 : totalRead;
ASN1InputStream.java 405 int totalRead = 0;
406 while (totalRead < len)
418 buf[totalRead++] = (char)((ch1 << 8) | (ch2 & 0xff));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
Streams.java 89 int totalRead = 0;
90 while (totalRead < len)
92 int numRead = inStr.read(buf, off + totalRead, len - totalRead);
97 totalRead += numRead;
99 return totalRead;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
RedefineClassesTest.java 160 int totalRead = 0;
162 totalRead = newClassByteCodeFileInputStream.read(res);
171 if ( totalRead != newClassByteCodeSize) { // EOF is reached
175 logWriter.println("===> actually read: " + totalRead);
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 380 size_t totalRead = _extraReadSizes[dec.state];
383 for (size_t i = 0; i < totalRead; i++)
397 UInt32 curSize = _bufsCurSizes[dec.state] - (UInt32)totalRead;
408 HRESULT res2 = inStreams[dec.state]->Read(_bufs[dec.state] + totalRead, curSize, &curSize);
413 totalRead += curSize;
417 while (totalRead < 4 && BCJ2_IS_32BIT_STREAM(dec.state));
422 if (totalRead == 0)
429 unsigned extraSize = ((unsigned)totalRead & 3);
431 if (totalRead < 4)
436 totalRead -= extraSize;
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
NativeCrashListener.java 177 int totalRead = 0;
179 int n = Os.read(fd, buffer, offset + totalRead, numBytes);
187 totalRead += n;
189 return totalRead;
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
CachedInputStream.java 184 int totalRead = 0;
198 totalRead += toRead;
201 return totalRead;
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherInputStreamTest.java 82 private int totalRead;
91 totalRead++;
99 totalRead += numRead;
105 return totalRead;
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
VpnTest.java 347 int bytesRead = 0, totalRead = 0;
349 bytesRead = in.read(read, totalRead, read.length - totalRead);
350 totalRead += bytesRead;
351 } while (bytesRead >= 0 && totalRead < data.length);
352 assertEquals(totalRead, data.length);
  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java 145 int totalRead = 0;
146 while (totalRead < len) {
147 int readNow = in.read(buffer.array(), totalRead, len - totalRead);
152 totalRead += readNow;
365 int totalRead = 0;
366 while (totalRead < mRecordingLength) {
367 int lenRead = mRecord.read(data, 0, (mRecordingLength - totalRead));
375 totalRead += lenRead;
  /frameworks/base/services/backup/java/com/android/server/backup/fullbackup/
PerformFullTransportBackupTask.java 413 long totalRead = 0;
444 totalRead += nRead;
448 new BackupProgress(preflightResult, totalRead));
456 + ": " + totalRead + " of " + quota);
462 mBackupRunner.sendQuotaExceeded(totalRead, quota);
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
MediaUtils.java     [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
FileChannelTest.java     [all...]
SocketChannelTest.java     [all...]
  /prebuilts/tools/common/m2/repository/com/braintreepayments/encryption/2.1.0/
encryption-2.1.0.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /prebuilts/tools/common/offline-m2/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
repository.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0/
repository-25.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-alpha4/
repository-25.2.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-alpha6/
repository-25.2.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-alpha7/
repository-25.2.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.2.0-beta1/
repository-25.2.0-beta1.jar 

Completed in 933 milliseconds

1 2 3 4 5 6