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

  /external/chromium_org/media/audio/linux/
alsa_output_unittest.cc 604 bool source_exhausted; local
607 test_stream->BufferPacket(&source_exhausted);
610 EXPECT_FALSE(source_exhausted);
630 bool source_exhausted; local
633 test_stream->BufferPacket(&source_exhausted);
636 EXPECT_FALSE(source_exhausted);
657 bool source_exhausted; local
660 test_stream->BufferPacket(&source_exhausted);
663 EXPECT_FALSE(source_exhausted);
671 bool source_exhausted; local
819 bool source_exhausted; local
    [all...]
alsa_output.cc 342 void AlsaPcmOutputStream::BufferPacket(bool* source_exhausted) {
348 *source_exhausted = true;
352 *source_exhausted = false;
390 *source_exhausted = true;
464 bool source_exhausted;
465 BufferPacket(&source_exhausted);
468 ScheduleNextWrite(source_exhausted);
471 void AlsaPcmOutputStream::ScheduleNextWrite(bool source_exhausted) {
495 } else if (!source_exhausted) {
alsa_output.h 124 void BufferPacket(bool* source_exhausted);
127 void ScheduleNextWrite(bool source_exhausted);

Completed in 2591 milliseconds