• Home
  • Raw
  • Download

Lines Matching refs:device

54     const AudioSystem::audio_devices device;  member
209 for (int j = 0; mixerProp[j][i].device; j++) { in ALSAMixer()
257 for (int j = 0; mixerProp[j][i].device; j++) { in ~ALSAMixer()
305 status_t ALSAMixer::setVolume(uint32_t device, float left, float right) in setVolume() argument
307 for (int j = 0; mixerProp[j][SND_PCM_STREAM_PLAYBACK].device; j++) in setVolume()
308 if (mixerProp[j][SND_PCM_STREAM_PLAYBACK].device & device) { in setVolume()
328 status_t ALSAMixer::setGain(uint32_t device, float gain) in setGain() argument
330 for (int j = 0; mixerProp[j][SND_PCM_STREAM_CAPTURE].device; j++) in setGain()
331 if (mixerProp[j][SND_PCM_STREAM_CAPTURE].device & device) { in setGain()
351 status_t ALSAMixer::setCaptureMuteState(uint32_t device, bool state) in setCaptureMuteState() argument
353 for (int j = 0; mixerProp[j][SND_PCM_STREAM_CAPTURE].device; j++) in setCaptureMuteState()
354 if (mixerProp[j][SND_PCM_STREAM_CAPTURE].device & device) { in setCaptureMuteState()
375 status_t ALSAMixer::getCaptureMuteState(uint32_t device, bool *state) in getCaptureMuteState() argument
379 for (int j = 0; mixerProp[j][SND_PCM_STREAM_CAPTURE].device; j++) in getCaptureMuteState()
380 if (mixerProp[j][SND_PCM_STREAM_CAPTURE].device & device) { in getCaptureMuteState()
392 status_t ALSAMixer::setPlaybackMuteState(uint32_t device, bool state) in setPlaybackMuteState() argument
394 for (int j = 0; mixerProp[j][SND_PCM_STREAM_PLAYBACK].device; j++) in setPlaybackMuteState()
395 if (mixerProp[j][SND_PCM_STREAM_PLAYBACK].device & device) { in setPlaybackMuteState()
416 status_t ALSAMixer::getPlaybackMuteState(uint32_t device, bool *state) in getPlaybackMuteState() argument
420 for (int j = 0; mixerProp[j][SND_PCM_STREAM_PLAYBACK].device; j++) in getPlaybackMuteState()
421 if (mixerProp[j][SND_PCM_STREAM_PLAYBACK].device & device) { in getPlaybackMuteState()