Searched defs:mute (Results 26 - 31 of 31) sorted by relevance

12

/frameworks/base/media/java/android/media/
H A DAudioSystem.java92 * Sets the microphone mute on or off.
94 * @param on set <var>true</var> to mute the microphone;
95 * <var>false</var> to turn mute off
101 * Checks whether the microphone mute is on or off.
723 public static native int setMasterMute(boolean mute); argument
H A DAudioManager.java163 * @hide Broadcast intent when a stream mute state changes.
164 * Includes the stream that changed and the new mute state
174 * @hide Broadcast intent when the master mute state changes.
248 * @hide The new master volume mute state for the master mute changed intent.
255 * @hide The new stream volume mute state for the stream mute changed intent.
392 * Toggle the mute state. If muted the stream will be unmuted. If not muted
838 public void setMasterMute(boolean mute, int flags) { argument
841 service.setMasterMute(mute, flag
[all...]
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiControlService.java976 void setAudioStatus(boolean mute, int volume) { argument
982 if (mute) {
1481 public void setSystemAudioMute(final boolean mute) { argument
1491 tv.changeMute(mute);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp962 bool mute = true; local
970 mute = mute && state;
975 return mute;
993 // Set master mute in the HALs which support it.
1005 // Now set the master mute in each playback thread. Playback threads
1006 // assigned to HALs which do not have master mute support will apply master
1007 // mute during the mix operation. Threads with HALs which do support master
1008 // mute will simply ignore the setting.
1101 ALOG_ASSERT(stream != AUDIO_STREAM_PATCH, "attempt to mute AUDIO_STREAM_PATC
[all...]
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp565 // mute media and sonification strategies and delay device switch by the largest
1289 // a notification so that audio focus effect can propagate, or that a mute/unmute
4486 // mute strategy while moving tracks from one output to another
4738 // skip beacon mute management if a dedicated TTS output is available
4766 // no other playback: unmute when beacon starts playing, mute when it stops
4771 uint32_t AudioPolicyManager::setBeaconMute(bool mute) { argument
4773 mute, mBeaconMuteRefCount, mBeaconPlayingRefCount);
4774 // keep track of muted state to avoid repeating mute/unmute operations
4775 if (mBeaconMuted != mute) {
4776 // mute/unmut
4847 bool mute = shouldMute && (curDevice & device) && (curDevice != device); local
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java711 // Call setRingerModeInt() to apply correct mute
991 pw.print("\n- mute affected streams = 0x");
1042 // apply stream mute states according to new value of mRingerModeAffectedStreams
1201 Log.d(TAG, String.format("Master mute %s, user=%d", masterMute, currentUser));
1210 Log.d(TAG, String.format("Mic mute %s, user=%d", microphoneMute, currentUser));
1265 // Don't suppress mute/unmute requests
1420 mStreamStates[stream].mute(state);
1436 streamState.mute(false);
1486 streamState.mute(false);
1590 mStreamStates[stream].mute(inde
2012 setMasterMuteInternal(boolean mute, int flags, String callingPackage, int uid, int userId) argument
2033 setMasterMuteInternalNoCallerCheck(boolean mute, int flags, int userId) argument
2058 setMasterMute(boolean mute, int flags, String callingPackage, int userId) argument
4333 public void mute(boolean state) { method in class:AudioService.VolumeStreamState
[all...]

Completed in 1078 milliseconds

12