Searched refs:muted (Results 1 - 15 of 15) sorted by relevance

/packages/apps/InCallUI/src/com/android/incallui/
H A DAudioModeProvider.java41 public void onAudioModeChange(int newMode, boolean muted) { argument
49 if (mMuted != muted) {
50 mMuted = muted;
94 void onMute(boolean muted); argument
H A DCallButtonPresenter.java114 public void onMute(boolean muted) { argument
116 getUi().setMute(muted);
H A DCallHandlerService.java153 public void onAudioModeChange(int mode, boolean muted) {
158 muted ? 1 : 0, null));
284 AudioMode.toString(msg.arg1) + ", muted (" + (msg.arg2 == 1) + ")");
H A DProximitySensor.java115 public void onMute(boolean muted) { argument
H A DCallCardPresenter.java213 public void onMute(boolean muted) { argument
/packages/services/Telephony/common/src/com/android/services/telephony/common/
H A DICallHandlerService.aidl59 void onAudioModeChange(in int mode, in boolean muted);
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DMovieAudioTrack.java235 * @param muted true to mute the audio track
237 void setMute(boolean muted) { argument
238 mMuted = muted;
242 * @return true if the audio track is muted
249 * @param muted true to mute the audio track
251 public void setAppMute(boolean muted) { argument
252 mAppMuted = muted;
256 * @return true if the audio track is muted
H A DMovieMediaItem.java261 * @param muted true to mute the media item
263 void setMute(boolean muted) { argument
264 mMuted = muted;
268 * @return true if the media item is muted
275 * @param muted true to mute the media item
277 public void setAppMute(boolean muted) { argument
278 mAppMuted = muted;
282 * @return true if the media item is muted
H A DApiService.java745 * @param muted true to mute the media item
748 boolean muted) {
753 intent.putExtra(PARAM_MUTE, muted);
1286 * @param muted true to mute the audio track
1289 boolean muted) {
1294 intent.putExtra(PARAM_MUTE, muted);
747 setMediaItemMute(Context context, String projectPath, String mediaItemId, boolean muted) argument
1288 setAudioTrackMute(Context context, String projectPath, String audioTrackId, boolean muted) argument
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DConversation.java152 public boolean muted; field in class:Conversation
233 dest.writeInt(muted ? 1 : 0);
266 muted = in.readInt() != 0;
344 muted = cursor.getInt(UIProvider.CONVERSATION_MUTED_COLUMN) != 0;
395 muted = other.muted;
423 boolean spam, boolean phishing, boolean muted, Uri accountUri,
449 conversation.muted = muted;
419 create(long id, Uri uri, String subject, long dateMs, String snippet, boolean hasAttachment, Uri messageListUri, String senders, int numMessages, int numDrafts, int sendingState, int priority, boolean read, boolean seen, boolean starred, FolderList rawFolders, int convFlags, int personalLevel, boolean spam, boolean phishing, boolean muted, Uri accountUri, ConversationInfo conversationInfo, Uri conversationBase, boolean isRemote, String attachmentPreviewUri0, String attachmentPreviewUri1, int attachmentPreviewStates, int attachmentPreviewsCount) argument
/packages/services/Telephony/src/com/android/phone/
H A DAudioRouter.java180 public void onMuteChange(boolean muted) { argument
181 logD("onMuteChange: " + muted);
386 void onAudioModeChange(int newMode, boolean muted); argument
H A DCallHandlerServiceProxy.java260 public void onAudioModeChange(int newMode, boolean muted) { argument
274 " with mute " + muted);
276 mCallHandlerServiceGuarded.onAudioModeChange(newMode, muted);
H A DPhoneUtils.java2045 static void setMute(boolean muted) { argument
2048 // Emergency calls never get muted.
2050 muted = false;
2054 setMuteInternal(cm.getFgPhone(), muted);
2062 sConnectionMuteTable.put(cn, Boolean.valueOf(muted));
2072 sConnectionMuteTable.put(cn, Boolean.valueOf(muted));
2090 private static void setMuteInternal(Phone phone, boolean muted) { argument
2098 if (DBG) log("setMuteInternal: using setMicrophoneMute(" + muted + ")...");
2099 audioManager.setMicrophoneMute(muted);
2101 if (DBG) log("setMuteInternal: using phone.setMute(" + muted
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DRingerVolumePreference.java122 boolean muted = mAudioManager.isStreamMute(streamType);
132 muted ? SEEKBAR_MUTED_RES_ID[i] : SEEKBAR_UNMUTED_RES_ID[i]);
138 if (streamType != mAudioManager.getMasterStreamType() && muted) {
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DMailActionBarView.java845 && !mCurrentConversation.muted);

Completed in 272 milliseconds