/hardware/libhardware_legacy/audio/ |
AudioDumpInterface.h | 135 virtual status_t setMasterVolume(float volume) 136 {return mFinalInterface->setMasterVolume(volume);}
|
A2dpAudioInterface.h | 41 virtual status_t setMasterVolume(float volume);
|
AudioHardwareStub.h | 72 virtual status_t setMasterVolume(float volume);
|
A2dpAudioInterface.cpp | 212 status_t A2dpAudioInterface::setMasterVolume(float v) 214 return mHardwareInterface->setMasterVolume(v);
|
AudioHardwareGeneric.h | 113 virtual status_t setMasterVolume(float volume);
|
AudioHardwareStub.cpp | 94 status_t AudioHardwareStub::setMasterVolume(float volume)
|
AudioHardwareGeneric.cpp | 147 status_t AudioHardwareGeneric::setMasterVolume(float v)
|
audio_hw_hal.cpp | 434 return ladev->hwif->setMasterVolume(volume);
|
/frameworks/base/core/jni/ |
android_media_AudioSystem.cpp | 214 return check_AudioSystem_Command(AudioSystem::setMasterVolume(value)); 302 {"setMasterVolume", "(F)I", (void *)android_media_AudioSystem_setMasterVolume},
|
/hardware/qcom/audio/legacy/alsa_sound/ |
AudioHardwareALSA.h | 235 status_t setMasterVolume(float volume); 466 virtual status_t setMasterVolume(float volume);
|
ALSAMixer.cpp | 267 status_t ALSAMixer::setMasterVolume(float volume)
|
audio_hw_hal.cpp | 455 return qadev->hwif->setMasterVolume(volume);
|
/frameworks/av/include/media/ |
IAudioFlinger.h | 107 virtual status_t setMasterVolume(float value) = 0;
|
AudioSystem.h | 48 static status_t setMasterVolume(float value);
|
/frameworks/base/media/java/android/media/ |
IAudioService.aidl | 58 void setMasterVolume(int index, int flags, String callingPackage);
|
AudioSystem.java | 393 public static native int setMasterVolume(float value);
|
AudioService.java | 735 AudioSystem.setMasterVolume(1.0f); [all...] |
AudioManager.java | 829 service.setMasterVolume(index, flags, mContext.getOpPackageName()); 894 public void setMasterVolume(int index, int flags) { 897 service.setMasterVolume(index, flags, mContext.getOpPackageName()); 899 Log.e(TAG, "Dead object in setMasterVolume", e); [all...] |
/hardware/libhardware_legacy/include/hardware_legacy/ |
AudioHardwareInterface.h | 217 virtual status_t setMasterVolume(float volume) = 0;
|
/frameworks/av/media/libmedia/ |
AudioSystem.cpp | 100 status_t AudioSystem::setMasterVolume(float value) 104 af->setMasterVolume(value);
|
IAudioFlinger.cpp | 243 virtual status_t setMasterVolume(float value) 830 reply->writeInt32( setMasterVolume(data.readFloat()) ); [all...] |
/frameworks/av/services/audioflinger/ |
AudioFlinger.h | 132 virtual status_t setMasterVolume(float value);
|
Threads.h | 408 void setMasterVolume(float value); [all...] |
/external/chromium_org/media/audio/win/ |
audio_low_latency_input_win.cc | 217 HRESULT hr = simple_audio_volume_->SetMasterVolume(static_cast<float>(volume),
|
/frameworks/base/core/java/android/view/ |
VolumePanel.java | 394 mAudioManager.setMasterVolume(index, flags); [all...] |