OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SetSpeakerVolume
(Results
1 - 19
of
19
) sorted by null
/external/webrtc/webrtc/voice_engine/
voe_volume_control_impl.cc
49
int VoEVolumeControlImpl::
SetSpeakerVolume
(unsigned int volume) {
51
"
SetSpeakerVolume
(volume=%u)", volume);
59
"
SetSpeakerVolume
() invalid argument");
69
"
SetSpeakerVolume
() failed to get max volume");
77
if (_shared->audio_device()->
SetSpeakerVolume
(spkrVol) != 0) {
79
"
SetSpeakerVolume
() failed to set speaker volume");
/external/webrtc/webrtc/modules/audio_device/android/
audio_track_jni.cc
170
int AudioTrackJni::
SetSpeakerVolume
(uint32_t volume) {
171
ALOGD("
SetSpeakerVolume
(%d)%s", volume, GetThreadInfo().c_str());
opensles_player.cc
167
int OpenSLESPlayer::
SetSpeakerVolume
(uint32_t volume) {
/external/webrtc/webrtc/modules/audio_device/linux/
audio_mixer_manager_alsa_linux.cc
374
int32_t AudioMixerManagerLinuxALSA::
SetSpeakerVolume
(
378
"AudioMixerManagerLinuxALSA::
SetSpeakerVolume
(volume=%u)",
[
all
...]
audio_mixer_manager_pulse_linux.cc
237
int32_t AudioMixerManagerLinuxPulse::
SetSpeakerVolume
(
242
"AudioMixerManagerLinuxPulse::
SetSpeakerVolume
(volume=%u)",
[
all
...]
audio_device_alsa_linux.cc
317
int32_t AudioDeviceLinuxALSA::
SetSpeakerVolume
(uint32_t volume)
320
return (_mixerManager.
SetSpeakerVolume
(volume));
[
all
...]
audio_device_pulse_linux.cc
403
int32_t AudioDeviceLinuxPulse::
SetSpeakerVolume
(uint32_t volume)
410
return (_mixerManager.
SetSpeakerVolume
(volume));
[
all
...]
/external/webrtc/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.cc
215
int32_t AudioMixerManagerMac::
SetSpeakerVolume
(uint32_t volume) {
217
"AudioMixerManagerMac::
SetSpeakerVolume
(volume=%u)", volume);
audio_device_mac.cc
525
int32_t AudioDeviceMac::
SetSpeakerVolume
(uint32_t volume) {
526
return (_mixerManager.
SetSpeakerVolume
(volume));
[
all
...]
/external/webrtc/webrtc/modules/audio_device/test/
func_test_manager.h
114
void
SetSpeakerVolume
(bool enable)
/external/webrtc/webrtc/modules/audio_device/dummy/
audio_device_dummy.cc
106
int32_t AudioDeviceDummy::
SetSpeakerVolume
(uint32_t volume) { return -1; }
file_audio_device.cc
330
int32_t FileAudioDevice::
SetSpeakerVolume
(uint32_t volume) { return -1; }
/external/webrtc/webrtc/modules/audio_device/include/
fake_audio_device.h
80
virtual int32_t
SetSpeakerVolume
(uint32_t volume) { return 0; }
/external/webrtc/webrtc/modules/audio_device/win/
audio_mixer_manager_win.cc
[
all
...]
audio_device_wave_win.cc
586
//
SetSpeakerVolume
589
int32_t AudioDeviceWindowsWave::
SetSpeakerVolume
(uint32_t volume)
592
return (_mixerManager.
SetSpeakerVolume
(volume));
[
all
...]
audio_device_core_win.cc
963
//
SetSpeakerVolume
966
int32_t AudioDeviceWindowsCore::
SetSpeakerVolume
(uint32_t volume)
[
all
...]
/external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule.cc
336
int32_t FakeAudioCaptureModule::
SetSpeakerVolume
(uint32_t /*volume*/) {
/external/webrtc/webrtc/modules/audio_device/
audio_device_impl.cc
606
//
SetSpeakerVolume
609
int32_t AudioDeviceModuleImpl::
SetSpeakerVolume
(uint32_t volume)
612
return (_ptrAudioDevice->
SetSpeakerVolume
(volume));
[
all
...]
/external/webrtc/webrtc/voice_engine/test/android/android_test/src/org/webrtc/voiceengine/test/
AndroidTest.java
573
if (0 !=
SetSpeakerVolume
(_volumeLevel)) {
586
if (0 !=
SetSpeakerVolume
(_volumeLevel)) {
[
all
...]
Completed in 353 milliseconds