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

  /system/media/audio_utils/tests/
fifo_tests.cpp 100 sf_count_t actualRead = sf_readf_short(sfin, inputBuffer, sfinfoin.frames);
101 if (actualRead != sfinfoin.frames) {
163 ssize_t actualRead = fifoReader.read(
166 printf("read %d out of %d\n", (int) actualRead, (int) framesToRead);
168 if (actualRead < 0 || (size_t) actualRead > framesToRead) {
169 switch (actualRead) {
180 actualRead = 0;
183 if (actualRead < 0) {
185 (int) actualRead);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 399 int actualRead = 0;
402 while (((actualRead = input.read(actual)) != -1) &&
404 assertEquals(actualRead, expectedRead);
    [all...]

Completed in 3227 milliseconds