HomeSort by relevance Sort by last modified time
    Searched refs:toWrite (Results 1 - 10 of 10) sorted by null

  /frameworks/base/tests/CoreTests/android/core/
PipedStreamTest.java 107 int toWrite = fib.next();
108 out.write(toWrite);
188 int toWrite = fib.next();
189 writeBytes[0] = (byte) (toWrite >> 24);
190 writeBytes[1] = (byte) (toWrite >> 16);
191 writeBytes[2] = (byte) (toWrite >> 8);
192 writeBytes[3] = (byte) (toWrite);
260 int toWrite = fib.next();
261 writeBytes[i ] = (byte) (toWrite >> 24);
262 writeBytes[i + 1] = (byte) (toWrite >> 16)
    [all...]
  /external/srec/shared/src/
CircularBuffer.c 140 size_t toWrite = bufSize - nbWritten;
141 memcpy(bufferData + buffer->writeIdx, ((unsigned char*) data) + nbWritten, toWrite);
142 buffer->size += toWrite;
143 buffer->writeIdx += toWrite;
  /external/srec/srec/EventLog/src/
EventLogImpl.c 462 const LCHAR* toWrite[5];
464 toWrite[0] = header;
465 toWrite[1] = bar;
466 toWrite[2] = evtt;
467 toWrite[3] = log_record;
468 toWrite[4] = nl;
494 len = LSTRLEN(toWrite[i]);
495 if (pfwrite(toWrite[i], sizeof_LCHAR, len, impl->logFile))
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
LoggingPrintStreamTest.java 174 String toWrite = a + "\n" + b + "\n" + c;
175 out.write(toWrite.getBytes());
  /frameworks/base/media/libmedia/
AudioTrack.cpp 919 size_t toWrite;
923 toWrite = audioBuffer.size>>1;
925 int count = toWrite;
931 toWrite = audioBuffer.size;
932 memcpy(audioBuffer.i8, src, toWrite);
933 src += toWrite;
935 userSize -= toWrite;
936 written += toWrite;
    [all...]
  /cts/tools/vm-tests/src/util/build/
BuildDalvikSuite.java 223 File toWrite = new File(curJunitFileName);
224 String absPath = toWrite.getAbsolutePath();
229 writeToFileMkdir(toWrite, curJunitFileData);
241 File toWrite = new File(allTestsFileName);
242 writeToFileMkdir(toWrite, curAllTestsData);
243 javacHostJunitBuildStep.addSourceFile(toWrite.getAbsolutePath());
  /frameworks/base/voip/jni/rtp/
AudioGroup.cpp 798 int toWrite = sampleCount;
802 while (--chances > 0 && (toWrite > 0 || toRead > 0)) {
803 if (toWrite > 0) {
805 buffer.frameCount = toWrite;
809 int offset = sampleCount - toWrite;
811 toWrite -= buffer.frameCount;
  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java 433 int toWrite = written.length - offset > 1024 ? 1024
435 if (toWrite < 256) {
437 output.writeByte((byte) toWrite);
440 output.writeInt(toWrite);
444 output.write(written, offset, toWrite);
445 offset += toWrite;
    [all...]
  /hardware/ril/libril/
ril.cpp 1185 const uint8_t *toWrite;
1187 toWrite = (const uint8_t *)buffer;
1192 written = write (fd, toWrite + writeOffset,
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 242 milliseconds