Lines Matching refs:AlsaSoundSystem

76   AlsaStream(AlsaSoundSystem *alsa,  in AlsaStream()
222 AlsaSoundSystem *alsa_;
238 AlsaInputStream(AlsaSoundSystem *alsa, in AlsaInputStream()
343 AlsaOutputStream(AlsaSoundSystem *alsa, in AlsaOutputStream()
441 AlsaSoundSystem::AlsaSoundSystem() : initialized_(false) {} in AlsaSoundSystem() function in rtc::AlsaSoundSystem
443 AlsaSoundSystem::~AlsaSoundSystem() { in ~AlsaSoundSystem()
448 bool AlsaSoundSystem::Init() { in Init()
465 void AlsaSoundSystem::Terminate() { in Terminate()
476 bool AlsaSoundSystem::EnumeratePlaybackDevices( in EnumeratePlaybackDevices()
481 bool AlsaSoundSystem::EnumerateCaptureDevices( in EnumerateCaptureDevices()
486 bool AlsaSoundSystem::GetDefaultPlaybackDevice(SoundDeviceLocator **device) { in GetDefaultPlaybackDevice()
490 bool AlsaSoundSystem::GetDefaultCaptureDevice(SoundDeviceLocator **device) { in GetDefaultCaptureDevice()
494 SoundOutputStreamInterface *AlsaSoundSystem::OpenPlaybackDevice( in OpenPlaybackDevice()
501 &AlsaSoundSystem::StartOutputStream); in OpenPlaybackDevice()
504 SoundInputStreamInterface *AlsaSoundSystem::OpenCaptureDevice( in OpenCaptureDevice()
511 &AlsaSoundSystem::StartInputStream); in OpenCaptureDevice()
514 const char *AlsaSoundSystem::GetName() const { in GetName()
518 bool AlsaSoundSystem::EnumerateDevices( in EnumerateDevices()
602 bool AlsaSoundSystem::GetDefaultDevice(SoundDeviceLocator **device) { in GetDefaultDevice()
610 inline size_t AlsaSoundSystem::FrameSize(const OpenParams &params) { in FrameSize()
615 StreamInterface *AlsaSoundSystem::OpenDevice( in OpenDevice()
619 StreamInterface *(AlsaSoundSystem::*start_fn)( in OpenDevice()
707 SoundOutputStreamInterface *AlsaSoundSystem::StartOutputStream( in StartOutputStream()
718 SoundInputStreamInterface *AlsaSoundSystem::StartInputStream( in StartInputStream()
737 inline const char *AlsaSoundSystem::GetError(int err) { in GetError()