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

1 2 3 4 5 6 7 8 91011>>

  /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 21 #define SNDRV_CTL_TLVT_DB_MINMAX_MUTE 5 /* dB scale with min/max with mute */
53 #define SNDRV_CTL_TLVD_DB_SCALE_ITEM(min, step, mute) \
57 ((mute) ? SNDRV_CTL_TLVD_DB_SCALE_MUTE : 0))
58 #define SNDRV_CTL_TLVD_DECLARE_DB_SCALE(name, min, step, mute) \
60 SNDRV_CTL_TLVD_DB_SCALE_ITEM(min, step, mute) \
  /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.
  /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;
  /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/base/core/java/android/hardware/radio/
ITuner.aidl 39 void setMuted(boolean mute);
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.
  /packages/apps/Car/libs/car-radio-service/src/com/android/car/radio/service/
IRadioManager.aidl 43 * @return {@code true} if the mute was successful.
45 boolean mute();
50 * @return {@code true} if the un-mute was successful.
  /hardware/interfaces/audio/2.0/default/
Device.cpp 114 Return<Result> Device::setMicMute(bool mute) {
115 return analyzeStatus("set_mic_mute", mDevice->set_mic_mute(mDevice, mute));
119 bool mute = false; local
121 analyzeStatus("get_mic_mute", mDevice->get_mic_mute(mDevice, &mute));
122 _hidl_cb(retval, mute);
126 Return<Result> Device::setMasterMute(bool mute) {
130 mDevice->set_master_mute(mDevice, mute));
137 bool mute = false; local
140 mDevice->get_master_mute(mDevice, &mute));
142 _hidl_cb(retval, mute);
    [all...]
PrimaryDevice.cpp 47 Return<Result> PrimaryDevice::setMicMute(bool mute) {
48 return mDevice->setMicMute(mute);
55 Return<Result> PrimaryDevice::setMasterMute(bool mute) {
56 return mDevice->setMasterMute(mute);
  /external/swiftshader/src/D3D8/
D3D8.cpp 82 void __cdecl DebugSetMute(long mute) // FIXME: Return type
  /packages/services/Car/car-lib/src/android/car/media/
ICarAudio.aidl 37 boolean setMediaMute(boolean mute) = 7;
  /frameworks/base/services/core/java/com/android/server/broadcastradio/
Tuner.java 80 private native void nativeSetMuted(long nativeContext, boolean mute);
144 public void setMuted(boolean mute) {
146 throw new IllegalStateException("Can't operate on mute - no audio requested");
150 if (mIsMuted == mute) return;
151 mIsMuted = mute;
153 nativeSetMuted(mNativeContext, mute);
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IInCallAdapter.aidl 40 void mute(boolean shouldMute);
  /packages/services/Car/car-support-lib/src/android/support/car/media/
CarAudioManagerEmbedded.java 128 public boolean setMediaMute(boolean mute) throws CarNotConnectedException {
130 return mManager.setMediaMute(mute);
CarAudioManager.java 181 * taking audio focus for media stream will move it out of a mute state.
188 * Mute or unmute media stream including radio. Can involve audio focus change to stop
194 * @param mute Returns {@code true} if media stream should be muted.
195 * @return Mute state of system after the request. A mute request can fail if a higher priority
199 public abstract boolean setMediaMute(boolean mute) throws CarNotConnectedException;
  /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...]
  /external/curl/src/
tool_msgs.c 42 if(!config->mute) {
92 * mute (--silent) was selected.

Completed in 390 milliseconds

1 2 3 4 5 6 7 8 91011>>