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/alsa/
alsa_output_unittest.cc 600 bool source_exhausted; local
603 test_stream->BufferPacket(&source_exhausted);
606 EXPECT_FALSE(source_exhausted);
626 bool source_exhausted; local
629 test_stream->BufferPacket(&source_exhausted);
632 EXPECT_FALSE(source_exhausted);
653 bool source_exhausted; local
656 test_stream->BufferPacket(&source_exhausted);
659 EXPECT_FALSE(source_exhausted);
667 bool source_exhausted; local
815 bool source_exhausted; local
    [all...]
alsa_output.cc 341 void AlsaPcmOutputStream::BufferPacket(bool* source_exhausted) {
347 *source_exhausted = true;
351 *source_exhausted = false;
389 *source_exhausted = true;
463 bool source_exhausted;
464 BufferPacket(&source_exhausted);
467 ScheduleNextWrite(source_exhausted);
470 void AlsaPcmOutputStream::ScheduleNextWrite(bool source_exhausted) {
494 } else if (!source_exhausted) {
alsa_output.h 124 void BufferPacket(bool* source_exhausted);
127 void ScheduleNextWrite(bool source_exhausted);

Completed in 737 milliseconds