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

/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DUpdateDestinationBlockedAction.java79 final String destination, final boolean blocked, final String conversationId,
85 new UpdateDestinationBlockedAction(destination, blocked, conversationId,
93 private static final String KEY_BLOCKED = "blocked";
96 final String destination, final boolean blocked, final String conversationId,
101 actionParameters.putBoolean(KEY_BLOCKED, blocked);
78 updateDestinationBlocked( final String destination, final boolean blocked, final String conversationId, final UpdateDestinationBlockedActionListener listener) argument
95 UpdateDestinationBlockedAction( final String destination, final boolean blocked, final String conversationId, final String actionKey) argument
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DPeopleAndOptionsData.java200 final boolean blocked) {
206 blocked, mConversationId,
199 setDestinationBlocked(final BindingBase<PeopleAndOptionsData> binding, final boolean blocked) argument
/packages/apps/TV/src/com/android/tv/
H A DMediaSessionWrapper.java107 * @param blocked {@code true} if the current channel is blocked, either by user settings or the
112 void update(boolean blocked, Channel currentChannel, Program currentProgram) { argument
118 // If the channel is blocked, display a lock and a short text on the Now Playing Card
119 if (blocked) {
/packages/apps/TV/src/com/android/tv/parental/
H A DParentalControlSettings.java31 /** The rating and all of its sub-ratings are blocked. */
34 /** The rating is blocked but not all of its sub-ratings are blocked. */
37 /** The rating is not blocked. */
70 // Ensure no ratings are blocked for the selected rating system
108 // UNRATED contents should be blocked unless the rating level is none or custom
133 // UNRATED contents should be blocked unless the rating level is none or custom
145 /** Sets the blocked status of a unrated contents. */
146 public boolean setUnratedBlocked(boolean blocked) { argument
148 if (blocked) {
173 setRatingBlocked( ContentRatingSystem contentRatingSystem, Rating rating, boolean blocked) argument
231 setSubRatingBlocked( ContentRatingSystem contentRatingSystem, Rating rating, SubRating subRating, boolean blocked) argument
252 setRatingBlockedInternal( ContentRatingSystem contentRatingSystem, Rating rating, SubRating subRating, boolean blocked) argument
[all...]
/packages/apps/Dialer/java/com/android/dialer/calllogutils/
H A DCallTypeIconsView.java170 return resources.blocked;
241 // Drawable representing a blocked call.
242 public final Drawable blocked; field in class:CallTypeIconsView.Resources
297 blocked = drawable.mutate();
298 blocked.setColorFilter(r.getColor(R.color.blocked_call), PorterDuff.Mode.MULTIPLY);
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppStateNotificationBridge.java113 stats.blocked = mBackend.getNotificationsBanned(entry.info.packageName, entry.info.uid);
115 stats.blockable = !stats.systemApp || (stats.systemApp && stats.blocked);
225 stats.blocked = !toggle.isChecked();
310 return !stats.blocked;
323 public boolean blocked; field in class:AppStateNotificationBridge.NotificationsSentState
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/
H A DPieRenderer.java586 public void setBlockFocus(boolean blocked) { argument
587 blockFocus = blocked;
588 if (blocked) {
/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DBugleDatabaseOperations.java162 * @param senderBlocked Flag whether sender of message is in blocked people list
183 * @param senderBlocked Flag whether sender of message is in blocked people list
250 * @param senderBlocked Flag whether sender of message is in blocked people list
347 return false; // if there's no row, it's not blocked :-)
573 // the sender is blocked, or we have been told to keep it archived.
1777 final String destination, final boolean blocked) {
1780 values.put(ParticipantColumns.BLOCKED, blocked ? 1 : 0);
1776 updateDestination(final DatabaseWrapper dbWrapper, final String destination, final boolean blocked) argument
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
H A DPieRenderer.java587 public void setBlockFocus(boolean blocked) { argument
588 mBlockFocus = blocked;
589 if (blocked) {
/packages/apps/TV/src/com/android/tv/guide/
H A DProgramManager.java699 long channelId, long startUtcMillis, long endUtcMillis, boolean blocked) {
700 this(channelId, null, null, startUtcMillis, endUtcMillis, blocked);
738 /** Returns true if this channel is blocked. */
698 TableEntry( long channelId, long startUtcMillis, long endUtcMillis, boolean blocked) argument
/packages/apps/TV/src/com/android/tv/ui/
H A DTunableTvView.java916 * Returns if the screen is blocked, either by {@link #blockOrUnblockScreen(boolean)} or because
917 * the content is blocked.
923 /** Returns if the screen is blocked by {@link #blockOrUnblockScreen(boolean)}. */
928 /** Returns {@code true} if the content is blocked, otherwise {@code false}. */
937 /** Returns currently blocked content rating. {@code null} if it's not blocked. */
973 * block screen will not show any description such as a lock icon and a text for the blocked
1455 /** A listener which receives the notification when the screen is blocked/unblocked. */
1457 /** Called when the screen is blocked/unblocked. */
1458 public abstract void onScreenBlockingChanged(boolean blocked); argument
[all...]

Completed in 210 milliseconds