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

1 2 3 4 5 6 7

  /bionic/libc/kernel/uapi/sound/
tlv.h 36 #define SNDRV_CTL_TLVD_DB_SCALE_ITEM(min,step,mute) SNDRV_CTL_TLVD_ITEM(SNDRV_CTL_TLVT_DB_SCALE, (min), ((step) & SNDRV_CTL_TLVD_DB_SCALE_MASK) | ((mute) ? SNDRV_CTL_TLVD_DB_SCALE_MUTE : 0))
37 #define SNDRV_CTL_TLVD_DECLARE_DB_SCALE(name,min,step,mute) unsigned int name[] = { SNDRV_CTL_TLVD_DB_SCALE_ITEM(min, step, mute) }
  /external/kernel-headers/original/uapi/sound/
tlv.h 22 #define SNDRV_CTL_TLVT_DB_MINMAX_MUTE 5 /* dB scale with min/max with mute */
54 #define SNDRV_CTL_TLVD_DB_SCALE_ITEM(min, step, mute) \
58 ((mute) ? SNDRV_CTL_TLVD_DB_SCALE_MUTE : 0))
59 #define SNDRV_CTL_TLVD_DECLARE_DB_SCALE(name, min, step, mute) \
61 SNDRV_CTL_TLVD_DB_SCALE_ITEM(min, step, mute) \
  /frameworks/base/services/core/java/com/android/server/hdmi/
VolumeControlAction.java 142 boolean mute = HdmiUtils.isAudioStatusMute(cmd);
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 = HdmiUtils.isAudioStatusMute(cmd);
97 tv().setAudioStatus(mute, volume);
99 if (!(tv().isSystemAudioActivated() ^ mute)) {
100 // Toggle AVR's mute status to match with the system audio status.
  /hardware/interfaces/audio/2.0/
IDevice.hal 58 * @param mute whether microphone is muted.
61 setMicMute(bool mute) generates (Result retval);
67 * @return mute whether microphone is muted.
69 getMicMute() generates (Result retval, bool mute);
72 * Set the audio mute status for all audio activities. If the return value
75 * @param mute whether audio is muted.
78 setMasterMute(bool mute) generates (Result retval);
81 * Get the current master mute status for the HAL, if the HAL supports
82 * master mute control. AudioFlinger will query this value from the primary
84 * initial master mute across all HALs. HAL must indicate that the featur
    [all...]
  /frameworks/wilhelm/src/itf/
IMuteSolo.cpp 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.cpp 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.cpp 23 SLboolean mute)
33 if (mute)
126 static SLresult IMIDIMuteSolo_SetTrackMute(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean mute)
137 if (mute)
I3DSource.cpp 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/adhd/cras/src/server/
cras_mix.h 44 /* Add src buffer to dst, scaling and setting mute.
51 * mute - Is the stream providing the buffer muted.
56 int mute, float mix_vol);
cras_mix.c 62 int mute, float mix_vol)
64 ops->add(fmt, dst, src, count, index, mute, mix_vol);
cras_system_state.c 97 exp_state->mute = 0;
189 cras_observer_notify_output_mute(state.exp_state->mute,
194 void cras_system_set_user_mute(int mute)
196 if (state.exp_state->user_mute == !!mute)
199 state.exp_state->user_mute = !!mute;
203 void cras_system_set_mute(int mute)
208 if (state.exp_state->mute == !!mute)
211 state.exp_state->mute = !!mute;
    [all...]
cras_mix_ops.h 40 int mute, float mix_vol);
cras_mix_ops.c 145 int mute, float mix_vol)
150 if (mute || (mix_vol < MIN_VOLUME_TO_SCALE)) {
334 int mute, float mix_vol)
339 if (mute || (mix_vol < MIN_VOLUME_TO_SCALE)) {
507 int mute, float mix_vol)
512 if (mute || (mix_vol < MIN_VOLUME_TO_SCALE)) {
718 int mute, float mix_vol)
723 if (mute || (mix_vol < MIN_VOLUME_TO_SCALE)) {
805 int mute, float mix_vol)
809 return cras_mix_add_s16_le(dst, src, count, index, mute,
    [all...]
  /hardware/interfaces/audio/4.0/
IDevice.hal 56 * @param mute whether microphone is muted.
59 setMicMute(bool mute) generates (Result retval);
65 * @return mute whether microphone is muted.
67 getMicMute() generates (Result retval, bool mute);
70 * Set the audio mute status for all audio activities. If the return value
73 * @param mute whether audio is muted.
76 setMasterMute(bool mute) generates (Result retval);
79 * Get the current master mute status for the HAL, if the HAL supports
80 * master mute control. AudioFlinger will query this value from the primary
82 * initial master mute across all HALs. HAL must indicate that the featur
    [all...]
  /packages/apps/Car/Radio/src/com/android/car/radio/service/
IRadioManager.aidl 46 * @return {@code true} if the mute was successful.
48 boolean mute();
53 * @return {@code true} if the un-mute was successful.
  /packages/apps/Car/Radio/src/com/android/car/radio/platform/
RadioTunerExt.java 64 boolean mute = mPendingMuteOperation;
67 + (mute ? "mute" : "unmute"));
68 setMuted(mute);
95 + (muted ? "mute" : "unmute"));
100 // if it's already (not) muted - no need to (un)mute again
120 Log.e(TAG, "Can't (un)mute - car is not connected", e);
  /external/swiftshader/src/D3D8/
D3D8.cpp 82 void __cdecl DebugSetMute(long mute) // FIXME: Return type
  /frameworks/base/core/java/android/hardware/radio/
ITuner.aidl 40 void setMuted(boolean mute);
  /hardware/interfaces/audio/core/all-versions/default/include/core/all-versions/default/
Device.impl.h 89 Return<Result> Device::setMicMute(bool mute) {
90 return analyzeStatus("set_mic_mute", mDevice->set_mic_mute(mDevice, mute));
94 bool mute = false; local
95 Result retval = analyzeStatus("get_mic_mute", mDevice->get_mic_mute(mDevice, &mute));
96 _hidl_cb(retval, mute);
100 Return<Result> Device::setMasterMute(bool mute) {
103 retval = analyzeStatus("set_master_mute", mDevice->set_master_mute(mDevice, mute));
110 bool mute = false; local
112 retval = analyzeStatus("get_master_mute", mDevice->get_master_mute(mDevice, &mute));
114 _hidl_cb(retval, mute);
    [all...]
  /external/adhd/cras/src/common/
cras_messages.h 176 /* Set the system mute state. */
179 int32_t mute; /* 0 = un-mute, 1 = mute. */ member in struct:cras_set_system_mute
183 int mute)
185 m->mute = mute;
191 int mute)
193 m->mute = mute;
    [all...]
  /external/curl/src/
tool_msgs.c 42 if(!config->mute) {
96 * mute (--silent) was selected.
  /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;

Completed in 387 milliseconds

1 2 3 4 5 6 7