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

  /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 399 int totalRead = 0;
400 while (totalRead < len)
412 buf[totalRead++] = (char)((ch1 << 8) | (ch2 & 0xff));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
Streams.java 46 int totalRead = 0;
47 while (totalRead < len)
49 int numRead = inStr.read(buf, off + totalRead, len - totalRead);
54 totalRead += numRead;
56 return totalRead;
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_transport.cpp 127 size_t totalRead = 0;
128 while (totalRead < len) {
129 int n = read(mSocket, (uint8_t*)data + totalRead, len - totalRead);
135 totalRead += n;
  /external/srec/portable/src/
PFile.c 198 size_t i, bufferSize, count, totalRead = 0;
205 totalRead += count;
232 totalRead += count;
251 totalRead -= bufferSize - i;
272 size_t i, bufferSize, count, totalRead = 0;
279 totalRead += count;
306 totalRead += count;
325 totalRead -= bufferSize - i;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AttachmentLoader.java 116 int totalRead = 0;
124 mService.userLog("Attachment load reached EOF, totalRead: ", totalRead);
129 totalRead += read;
135 int pct = (totalRead * 100) / length;
138 if ((pct > lastCallbackPct) && (totalRead > (lastCallbackTotalRead + CHUNK_SIZE))) {
141 lastCallbackTotalRead = totalRead;
146 if (totalRead > length) {
148 mService.userLog("Read more than expected: ", totalRead);
  /frameworks/base/services/java/com/android/server/am/
NativeCrashListener.java 175 int totalRead = 0;
177 int n = Libcore.os.read(fd, buffer, offset + totalRead, numBytes);
185 totalRead += n;
187 return totalRead;
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/tests/
G722DecTest.c 853 static int totalRead = 0;
862 totalRead += nRead;
867 APP_DPRINT ("%d :: App:: pBuffer->pBuffer = %p pBuffer->nAllocLen = * %ld, nRead = %d, totalread = %d\n",
868 __LINE__, pBufferHeader->pBuffer, pBufferHeader->nAllocLen, nRead, totalRead);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/tests/
G722EncTest.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/tests/
G726DecTest.c     [all...]
  /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;
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/tests/
G711DecTest.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/
WBAmrDecTest.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/
WmaDecTest.c     [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelTest.java     [all...]
SocketChannelTest.java     [all...]
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 977 milliseconds