/frameworks/wilhelm/src/itf/ |
D | IVolume.c | 79 static SLresult IVolume_SetMute(SLVolumeItf self, SLboolean mute) in IVolume_SetMute() argument 84 mute = SL_BOOLEAN_FALSE != mute; // normalize in IVolume_SetMute() 87 if (oldMute != mute) { in IVolume_SetMute() 88 thiz->mMute = (SLuint8) mute; in IVolume_SetMute() 108 SLboolean mute = thiz->mMute; in IVolume_GetMute() local 110 *pMute = mute; in IVolume_GetMute()
|
D | IMuteSolo.c | 22 static SLresult IMuteSolo_SetChannelMute(SLMuteSoloItf self, SLuint8 chan, SLboolean mute) in IMuteSolo_SetChannelMute() argument 43 if (mute) { in IMuteSolo_SetChannelMute() 71 SLboolean mute; in IMuteSolo_GetChannelMute() local 75 mute = SL_BOOLEAN_FALSE; in IMuteSolo_GetChannelMute() 78 mute = SL_BOOLEAN_FALSE; in IMuteSolo_GetChannelMute() 82 mute = (SLboolean) ((mask >> chan) & 1); in IMuteSolo_GetChannelMute() 86 *pMute = mute; in IMuteSolo_GetChannelMute()
|
D | IMIDIMuteSolo.c | 23 SLboolean mute) in IMIDIMuteSolo_SetChannelMute() argument 33 if (mute) in IMIDIMuteSolo_SetChannelMute() 126 static SLresult IMIDIMuteSolo_SetTrackMute(SLMIDIMuteSoloItf self, SLuint16 track, SLboolean mute) in IMIDIMuteSolo_SetTrackMute() argument 137 if (mute) in IMIDIMuteSolo_SetTrackMute()
|
D | I3DSource.c | 97 static SLresult I3DSource_SetRolloffMaxDistanceMute(SL3DSourceItf self, SLboolean mute) in I3DSource_SetRolloffMaxDistanceMute() argument 103 thiz->mRolloffMaxDistanceMute = SL_BOOLEAN_FALSE != mute; // normalize in I3DSource_SetRolloffMaxDistanceMute() 120 SLboolean mute = thiz->mRolloffMaxDistanceMute; in I3DSource_GetRolloffMaxDistanceMute() local 122 *pMute = mute; in I3DSource_GetRolloffMaxDistanceMute()
|
D | IOutputMixExt.c | 430 SLboolean mute = audioPlayer->mVolume.mMute; in audioPlayerGainUpdate() local 440 if (mute || !(~muteMask & 3)) { in audioPlayerGainUpdate()
|
/frameworks/base/core/jni/ |
D | android_media_AudioSystem.cpp | 232 android_media_AudioSystem_setMasterMute(JNIEnv *env, jobject thiz, jboolean mute) in android_media_AudioSystem_setMasterMute() argument 234 return check_AudioSystem_Command(AudioSystem::setMasterMute(mute)); in android_media_AudioSystem_setMasterMute() 240 bool mute; in android_media_AudioSystem_getMasterMute() local 241 if (AudioSystem::getMasterMute(&mute) != NO_ERROR) { in android_media_AudioSystem_getMasterMute() 242 mute = false; in android_media_AudioSystem_getMasterMute() 244 return mute; in android_media_AudioSystem_getMasterMute()
|
/frameworks/av/include/media/ |
D | AudioSystem.h | 54 static status_t setMasterMute(bool mute); 55 static status_t getMasterMute(bool* mute); 64 static status_t setStreamMute(audio_stream_type_t stream, bool mute); 65 static status_t getStreamMute(audio_stream_type_t stream, bool* mute);
|
D | IAudioTrack.h | 60 virtual void mute(bool) = 0;
|
D | AudioTrack.h | 278 void mute(bool);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | VolumeController.java | 65 public void onChanged(ToggleSlider view, boolean tracking, boolean mute, int level) { in onChanged() argument 67 if (mute) { in onChanged()
|
/frameworks/av/media/libmedia/ |
D | AudioSystem.cpp | 99 status_t AudioSystem::setMasterMute(bool mute) in setMasterMute() argument 103 af->setMasterMute(mute); in setMasterMute() 115 status_t AudioSystem::getMasterMute(bool* mute) in getMasterMute() argument 119 *mute = af->masterMute(); in getMasterMute() 133 status_t AudioSystem::setStreamMute(audio_stream_type_t stream, bool mute) in setStreamMute() argument 138 af->setStreamMute(stream, mute); in setStreamMute() 152 status_t AudioSystem::getStreamMute(audio_stream_type_t stream, bool* mute) in getStreamMute() argument 157 *mute = af->streamMute(stream); in getStreamMute()
|
D | IAudioTrack.cpp | 91 virtual void mute(bool e) in mute() function in android::BpAudioTrack 197 mute( data.readInt32() ); in onTransact()
|
D | AudioTrack.cpp | 505 void AudioTrack::mute(bool e) in mute() function in android::AudioTrack 507 mAudioTrack->mute(e); in mute()
|
/frameworks/base/docs/html/guide/topics/media/jet/ |
D | jetcreator_manual.jd | 178 perhaps with small variations (using the mute/un-mute feature) until activity 202 <h3>2.1.4 Mute/Un-mute Synchronization</h3> 431 mute flag settings.</p> 494 mute flags, repeat and transpose settings and audition the segment as it will 499 <p><b>Note</b>: the audition attributes (mute flags, repeat and transpose) are <i 544 checkbox will mute that track. </li> 664 Mute/UnMute will mute or unmute the track that the event is assigned to</p> 679 single track of a segment when triggered, then mute that track at the end of 680 the trigger segment. Therefore you should make sure the mute flag is set to 681 mute the track that a trigger event will be unmuting when receiving a trigger event. [all …]
|
/frameworks/base/media/java/android/media/ |
D | AudioSystem.java | 389 public static native int setMasterMute(boolean mute); in setMasterMute() argument
|
D | AudioService.java | 1169 mStreamStates[stream].mute(cb, state); in setStreamSolo() 1176 mStreamStates[streamType].mute(cb, state); in setStreamMute() 1332 mStreamStates[streamType].mute(null, false); in setRingerModeInt() 1338 mStreamStates[streamType].mute(null, true); in setRingerModeInt() 1815 streamState.mDeathHandlers.get(i).mute(false); in readAudioSettings() 2930 public synchronized void mute(IBinder cb, boolean state) { in mute() method in AudioService.VolumeStreamState 2936 handler.mute(state); in mute() 2962 public void mute(boolean state) { in mute() method in AudioService.VolumeStreamState.VolumeDeathHandler 3042 mute(false); in binderDied()
|
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
D | EffectBundle.cpp | 1568 int32_t VolumeSetMute(EffectContext *pContext, uint32_t mute){ in VolumeSetMute() argument 1571 pContext->pBundledContext->bMuteEnabled = mute; in VolumeSetMute() 1598 int32_t VolumeGetMute(EffectContext *pContext, uint32_t *mute){ in VolumeGetMute() argument 1602 *mute = pContext->pBundledContext->bMuteEnabled; in VolumeGetMute() 2386 uint32_t mute; in Volume_setParameter() local 2403 mute = *(uint32_t *)pValue; in Volume_setParameter() 2406 status = VolumeSetMute(pContext, mute); in Volume_setParameter()
|
/frameworks/av/services/audioflinger/ |
D | AudioFlinger.h | 755 mute(false) in stream_type_t() 759 bool mute; member 798 void mute(bool); 1383 { return mStreamTypes[stream].mute; } in streamMute_l() 1411 virtual void mute(bool);
|
D | AudioFlinger.cpp | 819 mStreamTypes[stream].mute = muted; in setStreamMute() 1588 mStreamTypes[stream].mute = mAudioFlinger->streamMute_l(stream); in PlaybackThread() 1619 if (st->mute) { in dumpTracks() 1935 mStreamTypes[stream].mute = muted; in setStreamMute() 3165 mStreamTypes[track->streamType()].mute) { in prepareTracks_l() 3747 mStreamTypes[track->streamType()].mute) { in prepareTracks_l() 4719 void AudioFlinger::PlaybackThread::Track::mute(bool muted) in mute() function in android::AudioFlinger::PlaybackThread::Track 5825 void AudioFlinger::TrackHandle::mute(bool e) { in mute() function in android::AudioFlinger::TrackHandle 5826 mTrack->mute(e); in mute()
|
/frameworks/wilhelm/include/SLES/ |
D | OpenSLES.h | 1309 SLboolean mute 1830 SLboolean mute 1933 SLboolean mute 2084 SLboolean mute 2108 SLboolean mute
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | GsmCallTracker.java | 717 setMute(boolean mute) { in setMute() argument 718 desiredMute = mute; in setMute()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
D | CdmaCallTracker.java | 787 setMute(boolean mute) { in setMute() argument 788 desiredMute = mute; in setMute()
|
/frameworks/wilhelm/include/OMXAL/ |
D | OpenMAXAL.h | 923 XAboolean mute
|
/frameworks/base/docs/html/about/versions/ |
D | android-2.3.jd | 58 audio calls. Once an audio call is established, applications can mute calls,
|