HomeSort by relevance Sort by last modified time
    Searched refs:mute (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/services/core/java/com/android/server/hdmi/
VolumeControlAction.java 139 boolean mute = (params[0] & 0x80) == 0x80;
142 if (shouldUpdateAudioVolume(mute)) {
143 HdmiLogger.debug("Force volume change[mute:%b, volume=%d]", mute, volume);
144 tv().setAudioStatus(mute, volume);
149 private boolean shouldUpdateAudioVolume(boolean mute) {
150 // Do nothing if in mute.
151 if (mute) {
SystemAudioStatusAction.java 28 * Action to update audio status (volume or mute) of audio amplifier
67 // Inform to all application that the audio status (volumn, mute) of
97 boolean mute = (params[0] & 0x80) == 0x80;
99 tv().setAudioStatus(mute, volume);
101 if (!(tv().isSystemAudioActivated() ^ mute)) {
102 // Toggle AVR's mute status to match with the system audio status.
  /external/qemu/audio/
mixeng.h 29 struct mixeng_volume { int mute; mixeng_real r; mixeng_real l; }; member in struct:mixeng_volume
32 struct mixeng_volume { int mute; int64_t r; int64_t l; }; member in struct:mixeng_volume
audio.h 125 void AUD_set_volume_out (SWVoiceOut *sw, int mute, uint8_t lvol, uint8_t rvol);
126 void AUD_set_volume_in (SWVoiceIn *sw, int mute, uint8_t lvol, uint8_t rvol);
mixeng_template.h 117 if (vol->mute) {
137 if (vol->mute) {
  /external/chromium_org/ash/system/win/audio/
tray_audio_delegate_win.cc 69 BOOL mute = FALSE;
70 if (FAILED(volume_control->GetMute(&mute)))
73 return !!mute;
  /frameworks/wilhelm/src/itf/
IMuteSolo.c 22 static SLresult IMuteSolo_SetChannelMute(SLMuteSoloItf self, SLuint8 chan, SLboolean mute)
43 if (mute) {
71 SLboolean mute; local
75 mute = SL_BOOLEAN_FALSE;
78 mute = SL_BOOLEAN_FALSE;
82 mute = (SLboolean) ((mask >> chan) & 1);
86 *pMute = mute;
IVolume.c 79 static SLresult IVolume_SetMute(SLVolumeItf self, SLboolean mute)
84 mute = SL_BOOLEAN_FALSE != mute; // normalize
87 if (oldMute != mute) {
88 thiz->mMute = (SLuint8) mute;
108 SLboolean mute = thiz->mMute; local
110 *pMute = mute;
IMIDIMuteSolo.c 23 SLboolean mute)
33 if (mute)
126 static SLresult IMIDIMuteSolo_SetTrackMute(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean mute)
137 if (mute)
I3DSource.c 97 static SLresult I3DSource_SetRolloffMaxDistanceMute(SL3DSourceItf self, SLboolean mute)
103 thiz->mRolloffMaxDistanceMute = SL_BOOLEAN_FALSE != mute; // normalize
120 SLboolean mute = thiz->mRolloffMaxDistanceMute; local
122 *pMute = mute;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameConsole.h 53 static void mute();
  /device/asus/fugu/libaudio/
AudioHardwareInput.h 38 status_t setMicMute(bool mute);
39 status_t getMicMute(bool* mute);
AudioHardwareOutput.h 43 status_t setMasterMute(bool mute);
44 status_t getMasterMute(bool* mute);
AudioHardwareInput.cpp 66 status_t AudioHardwareInput::setMicMute(bool mute)
68 mMicMute = mute;
72 status_t AudioHardwareInput::getMicMute(bool* mute)
74 *mute = mMicMute;
  /external/chromium_org/chrome/browser/chromeos/audio/
audio_devices_pref_handler_impl.cc 74 int mute = kPrefMuteOff; local
75 device_mute_settings_->GetInteger(device_id_str, &mute);
77 return (mute == kPrefMuteOn);
81 bool mute) {
83 mute ? kPrefMuteOn : kPrefMuteOff);
165 int mute = kPrefMuteOff; local
166 it.value().GetAsInteger(&mute);
167 dict_update->SetInteger(it.key(), mute);
  /external/chromium_org/third_party/WebKit/Source/core/css/
mediaControlsAndroid.css 45 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorState.h 56 void mute();
97 void mute();
  /frameworks/base/telecomm/java/android/telecom/
InCallAdapter.java 110 * Mute the microphone.
114 public void mute(boolean shouldMute) { method in class:InCallAdapter
116 mAdapter.mute(shouldMute);
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IInCallAdapter.aidl 39 void mute(boolean shouldMute);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/pulse/
introspect.h 155 * It is also possible to mute a sink or source:
216 int mute; /**< Mute switch of the sink */ member in struct:pa_sink_info
251 /** Set the mute switch of a sink device specified by its index */
252 pa_operation* pa_context_set_sink_mute_by_index(pa_context *c, uint32_t idx, int mute, pa_context_success_cb_t cb, void *userdata);
254 /** Set the mute switch of a sink device specified by its name */
255 pa_operation* pa_context_set_sink_mute_by_name(pa_context *c, const char *name, int mute, pa_context_success_cb_t cb, void *userdata);
293 int mute; /**< Mute switch of the sink */ member in struct:pa_source_info
328 /** Set the mute switch of a source device specified by its index *
501 int mute; \/**< Stream muted \\since 0.9.7 *\/ member in struct:pa_sink_input_info
    [all...]
ext-stream-restore.h 44 int mute; /**< The boolean mute state of the stream when it was last seen, if applicable and saved */ member in struct:pa_ext_stream_restore_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
introspect.h 155 * It is also possible to mute a sink or source:
216 int mute; /**< Mute switch of the sink */ member in struct:pa_sink_info
251 /** Set the mute switch of a sink device specified by its index */
252 pa_operation* pa_context_set_sink_mute_by_index(pa_context *c, uint32_t idx, int mute, pa_context_success_cb_t cb, void *userdata);
254 /** Set the mute switch of a sink device specified by its name */
255 pa_operation* pa_context_set_sink_mute_by_name(pa_context *c, const char *name, int mute, pa_context_success_cb_t cb, void *userdata);
293 int mute; /**< Mute switch of the sink */ member in struct:pa_source_info
328 /** Set the mute switch of a source device specified by its index *
501 int mute; \/**< Stream muted \\since 0.9.7 *\/ member in struct:pa_sink_input_info
    [all...]
ext-stream-restore.h 44 int mute; /**< The boolean mute state of the stream when it was last seen, if applicable and saved */ member in struct:pa_ext_stream_restore_info
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStreamTrack.h 68 DEFINE_ATTRIBUTE_EVENT_LISTENER(mute);
  /hardware/qcom/audio/legacy/alsa_sound/
ALSAMixer.cpp 86 mute(false)
94 bool mute; member in struct:android::mixer_info_t
369 info->mute = state;
385 *state = info->mute;
410 info->mute = state;
426 *state = info->mute;

Completed in 650 milliseconds

1 2 3 4 5 6 7 8