Searched defs:mute (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/call/
H A DTelecomAdapter.java69 public void mute(boolean shouldMute) { method in class:TelecomAdapter
73 LogUtil.e("TelecomAdapter.mute", "mInCallService is null");
/packages/services/Car/car-support-lib/src/android/support/car/media/
H A DCarAudioManager.java181 * taking audio focus for media stream will move it out of a mute state.
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; argument
H A DCarAudioManagerEmbedded.java128 public boolean setMediaMute(boolean mute) throws CarNotConnectedException { argument
130 return mManager.setMediaMute(mute);
/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java254 public void mute(boolean shouldMute) { method in class:InCallAdapter
260 mCallsManager.mute(shouldMute);
H A DCallAudioManager.java235 // Turn off mute when a new incoming call is answered iff it's not a handover.
237 mute(false /* shouldMute */);
372 public void mute(boolean shouldMute) { method in class:CallAudioManager
373 Log.v(this, "mute, shouldMute: %b", shouldMute);
375 // Don't mute if there are any emergency calls.
378 Log.v(this, "ignoring mute for emergency call");
H A DCallAudioRouteStateMachine.java1196 * and mute status.
1314 private void setMuteOn(boolean mute) { argument
1315 mIsMuted = mute;
1316 Log.addEvent(mCallsManager.getForegroundCall(), mute ?
1318 if (mute != mAudioManager.isMicrophoneMute() && isInActiveState()) {
1320 Log.i(this, "changing microphone mute state to: %b [serviceIsNull=%b]",
1321 mute, audio == null);
1327 // used AudioManager directly, we would change mute for the system's
1330 mute, mContext.getOpPackageName(), getCurrentUserId());
1331 mStatusBarNotifier.notifyMute(mute);
[all...]
H A DCallsManager.java1641 /** Called by the in-call UI to change the mute state. */
1642 void mute(boolean shouldMute) { method in class:CallsManager
1643 mCallAudioManager.mute(shouldMute);
1881 "media btn long press - mute");
/packages/services/Car/car-lib/src/android/car/media/
H A DCarAudioManager.java343 * taking audio focus for media stream will get it out of mute state.
365 * @param mute
366 * @return Mute state of system after the request. Note that mute request can fail if there
372 public boolean setMediaMute(boolean mute) throws CarNotConnectedException { argument
374 return mService.setMediaMute(mute);
/packages/apps/Car/Messenger/src/com/android/car/messenger/
H A DMapMessageMonitor.java299 // add mute/unmute.
384 void toggleMuteConversation(SenderKey senderKey, boolean mute) { argument
390 notificationInfo.muted = mute;
/packages/services/Car/service/src/com/android/car/
H A DCarAudioService.java539 public boolean setMediaMute(boolean mute) { argument
542 if (mute == currentState) {
545 if (mute) {
546 return mMediaMuteAudioFocusListener.mute();
684 * API for system to control mute with lock.
685 * @param mute
686 * @return the current mute state
689 mMediaMuteAudioFocusListener.mute(lock);
1087 // cannot mute as primary is media
1587 // mute doe
1592 public boolean mute() { method in class:CarAudioService.MediaMuteAudioFocusListener
1602 public synchronized boolean mute(boolean lock) { method in class:CarAudioService.MediaMuteAudioFocusListener
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java1821 // Create an update operation that represents mute
2216 * As above, for mute
2218 public int mute(Collection<Conversation> conversations) { method in class:ConversationCursor
2219 return mute(conversations, null);
2222 public int mute(Collection<Conversation> conversations, UndoCallback undoCallback) { method in class:ConversationCursor

Completed in 261 milliseconds