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

1 2 3 4 5 6 7 8 9

  /frameworks/base/services/core/java/com/android/server/hdmi/
VolumeControlAction.java 142 boolean mute = (params[0] & 0x80) == 0x80;
145 mLastAvrMute = mute;
146 if (shouldUpdateAudioVolume(mute)) {
147 HdmiLogger.debug("Force volume change[mute:%b, volume=%d]", mute, volume);
148 tv().setAudioStatus(mute, volume);
155 private boolean shouldUpdateAudioVolume(boolean mute) {
156 // Do nothing if in mute.
157 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
95 boolean mute = (params[0] & 0x80) == 0x80;
97 tv().setAudioStatus(mute, volume);
99 if (!(tv().isSystemAudioActivated() ^ mute)) {
100 // Toggle AVR's mute status to match with the system audio status.
  /frameworks/av/include/radio/
IRadio.h 40 virtual status_t setMute(bool mute) = 0;
42 virtual status_t getMute(bool *mute) = 0;
Radio.h 53 status_t setMute(bool mute);
55 status_t getMute(bool *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 80 static SLresult IVolume_SetMute(SLVolumeItf self, SLboolean mute)
85 mute = SL_BOOLEAN_FALSE != mute; // normalize
88 if (oldMute != mute) {
89 thiz->mMute = (SLuint8) mute;
109 SLboolean mute = thiz->mMute; local
111 *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;
  /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;
  /frameworks/av/radio/
IRadio.cpp 92 virtual status_t setMute(bool mute)
96 data.writeInt32(mute ? 1 : 0);
104 virtual status_t getMute(bool *mute)
107 if (mute == NULL) {
116 *mute = muteread != 0;
258 bool mute = data.readInt32() != 0; local
259 status_t status = setMute(mute);
265 bool mute; local
266 status_t status = getMute(&mute);
269 reply->writeInt32(mute ? 1 : 0)
    [all...]
Radio.cpp 162 status_t Radio::setMute(bool mute)
168 return mIRadio->setMute(mute);
171 status_t Radio::getMute(bool *mute)
177 return mIRadio->getMute(mute);
  /frameworks/av/services/radio/
RadioService.h 80 status_t setMute(bool mute);
82 status_t getMute(bool *mute);
148 virtual status_t setMute(bool mute);
150 virtual status_t getMute(bool *mute);
  /external/autotest/client/cros/multimedia/
audio_extension_handler.py 160 def set_mute(self, mute):
163 @param mute: True to mute. False otherwise.
169 is_muted_string = 'true' if mute else 'false'
192 @param returns: A tuple (volume, mute), where volume is 0~100, and mute
  /external/autotest/server/cros/multimedia/
audio_facade_adapter.py 208 def set_chrome_mute(self, mute):
211 @param mute: True to mute. False otherwise.
214 self._audio_proxy.set_chrome_mute(mute)
220 @param returns: A tuple (volume, mute), where volume is 0~100, and mute
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IInCallAdapter.aidl 40 void mute(boolean shouldMute);
  /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/curl/src/
tool_msgs.c 42 if(!config->mute) {
92 * mute (--silent) was selected.
  /frameworks/base/core/java/android/hardware/radio/
RadioTuner.java 88 * Set mute state. When muted, the radio tuner audio source is not available for playback on
94 * @param mute the requested mute state.
105 public abstract int setMute(boolean mute);
108 * Get mute state.
111 * retrieving the mute state, {@code false} otherwise.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
ext-stream-restore.h 45 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
introspect.h 156 * It is also possible to mute a sink or source:
219 int mute; /**< Mute switch of the sink */ member in struct:pa_sink_info
256 /** Set the mute switch of a sink device specified by its index */
257 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);
259 /** Set the mute switch of a sink device specified by its name */
260 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);
299 int mute; /**< Mute switch of the sink */ member in struct:pa_source_info
336 /** Set the mute switch of a source device specified by its index *
525 int mute; \/**< Stream muted \\since 0.9.7 *\/ member in struct:pa_sink_input_info
579 int mute; \/**< Stream muted \\since 1.0 *\/ member in struct:pa_source_output_info
    [all...]
  /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;
  /frameworks/base/core/java/android/hardware/hdmi/
IHdmiControlService.aidl 59 void setSystemAudioMute(boolean mute);

Completed in 871 milliseconds

1 2 3 4 5 6 7 8 9