Searched refs:setMasterMute (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/media/java/android/media/
H A DAudioSystem.java346 public static native int setMasterMute(boolean mute); method in class:AudioSystem
H A DIAudioService.aidl59 void setMasterMute(boolean state, int flags, IBinder cb);
H A DAudioManager.java484 setMasterMute(!isMasterMute());
924 public void setMasterMute(boolean state) { method in class:AudioManager
925 setMasterMute(state, FLAG_SHOW_UI);
933 public void setMasterMute(boolean state, int flags) { method in class:AudioManager
936 service.setMasterMute(state, flags, mICallBack);
938 Log.e(TAG, "Dead object in setMasterMute", e);
H A DAudioService.java647 AudioSystem.setMasterMute(masterMute);
1043 /** @see AudioManager#setMasterMute(boolean, IBinder) */
1044 public void setMasterMute(boolean state, int flags, IBinder cb) { method in class:AudioService
1046 AudioSystem.setMasterMute(state);
/frameworks/av/include/media/
H A DAudioSystem.h54 static status_t setMasterMute(bool mute);
H A DIAudioFlinger.h98 virtual status_t setMasterMute(bool muted) = 0;
/frameworks/base/core/jni/
H A Dandroid_media_AudioSystem.cpp226 return check_AudioSystem_Command(AudioSystem::setMasterMute(mute));
263 {"setMasterMute", "(Z)I", (void *)android_media_AudioSystem_setMasterMute},
/frameworks/av/media/libmedia/
H A DAudioSystem.cpp99 status_t AudioSystem::setMasterMute(bool mute) function in class:android::AudioSystem
103 af->setMasterMute(mute);
H A DIAudioFlinger.cpp230 virtual status_t setMasterMute(bool muted) function in class:android::BpAudioFlinger
767 reply->writeInt32( setMasterMute(data.readInt32()) );
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h121 virtual status_t setMasterMute(bool muted);
975 void setMasterMute(bool muted);
H A DAudioFlinger.cpp708 status_t AudioFlinger::setMasterMute(bool muted) function in class:android::AudioFlinger
719 mPlaybackThreads.valueAt(i)->setMasterMute(muted);
1863 void AudioFlinger::PlaybackThread::setMasterMute(bool muted) function in class:android::AudioFlinger::PlaybackThread

Completed in 426 milliseconds