Searched refs:isBlocked (Results 1 - 23 of 23) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
H A DBlockCheckerAdapter.java26 public boolean isBlocked(Context context, String number) { method in class:BlockCheckerAdapter
27 return BlockChecker.isBlocked(context, number);
H A DAsyncBlockCheckFilter.java66 return mBlockCheckerAdapter.isBlocked(mContext, params[0]);
73 protected void onPostExecute(Boolean isBlocked) { argument
77 if (isBlocked) {
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DUpdateDestinationBlockedAction.java108 final boolean isBlocked = actionParameters.getBoolean(KEY_BLOCKED);
111 BugleDatabaseOperations.updateDestination(db, destination, isBlocked);
117 if (isBlocked) {
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DAsyncBlockCheckFilterTest.java78 .isBlocked(any(Context.class), eq(TEST_HANDLE.getSchemeSpecificPart()));
92 .isBlocked(any(Context.class), eq(TEST_HANDLE.getSchemeSpecificPart()));
/packages/services/Telecomm/src/com/android/server/telecom/settings/
H A DBlockNumberTaskFragment.java50 if (BlockedNumberContract.isBlocked(getContext(), mNumber)) {
/packages/apps/TV/src/com/android/tv/guide/
H A DProgramManager.java137 oldEntry.entryEndUtcMillis, oldEntry.isBlocked());
150 oldEntry.isBlocked());
163 oldEntry.entryEndUtcMillis, oldEntry.isBlocked());
695 long entryEndUtcMillis, boolean isBlocked) {
696 this(channelId, program, null, entryStartUtcMillis, entryEndUtcMillis, isBlocked);
700 long entryStartUtcMillis, long entryEndUtcMillis, boolean isBlocked) {
706 mIsBlocked = isBlocked;
727 boolean isBlocked() { method in class:ProgramManager.TableEntry
694 TableEntry(long channelId, Program program, long entryStartUtcMillis, long entryEndUtcMillis, boolean isBlocked) argument
699 TableEntry(long channelId, Program program, ScheduledRecording scheduledRecording, long entryStartUtcMillis, long entryEndUtcMillis, boolean isBlocked) argument
H A DProgramListAdapter.java88 String gapTitle = tableEntry.isBlocked() ? mBlockedProgramTitle : mNoInfoProgramTitle;
H A DProgramTableAdapter.java629 if (mSelectedEntry.isBlocked()) {
/packages/apps/Dialer/java/com/android/dialer/blocking/
H A DBlockNumberDialogFragment.java111 final boolean isBlocked = getArguments().containsKey(ARG_BLOCK_ID);
130 if (isBlocked) {
160 if (isBlocked) {
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DPeopleOptionsItemData.java113 final int resourceId = otherParticipant.isBlocked() ?
H A DParticipantData.java483 public boolean isBlocked() { method in class:ParticipantData
/packages/apps/Settings/src/com/android/settings/network/
H A DTetherPreferenceController.java115 final boolean isBlocked =
119 return !isBlocked;
/packages/apps/Dialer/java/com/android/dialer/calllogutils/
H A DPhoneCallDetails.java121 public boolean isBlocked = false; field in class:PhoneCallDetails
/packages/providers/BlockedNumberProvider/tests/src/com/android/providers/blockednumber/
H A DBlockedNumberProviderTest.java351 BlockedNumberContract.isBlocked(mMockContext, "123");
398 // Dialer check is executed twice: once for insert, and once for isBlocked.
423 // Dialer check is executed twice: once for insert, and once for isBlocked.
550 BlockedNumberContract.isBlocked(mMockContext, "123");
588 BlockedNumberContract.isBlocked(mMockContext, "123");
601 assertEquals(expected, BlockedNumberContract.isBlocked(mMockContext, phoneNumber));
/packages/providers/BlockedNumberProvider/src/com/android/providers/blockednumber/
H A DBlockedNumberProvider.java310 res.putBoolean(BlockedNumberContract.RES_NUMBER_IS_BLOCKED, isBlocked(arg));
383 private boolean isBlocked(String phoneNumber) { method in class:BlockedNumberProvider
391 Log.d(TAG, String.format("isBlocked: in=%s, e164=%s", phoneNumber, inE164));
454 return isBlocked(phoneNumber);
/packages/experimental/PrintService/src/foo/bar/printservice/
H A DMyPrintService.java144 if (printJob.isQueued() || printJob.isStarted() || printJob.isBlocked()) {
199 if (printJob.isBlocked()) {
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
H A DCallLogListItemViewHolder.java1011 boolean isBlocked = blockId != null;
1012 if (isBlocked) {
1095 boolean isBlocked = blockId != null;
1096 if (isBlocked) {
H A DPhoneCallDetailsHelper.java202 } else if (details.isBlocked) {
H A DCallLogAdapter.java834 details.isBlocked = views.blockId != null;
/packages/apps/Dialer/java/com/android/incallui/call/
H A DDialerCall.java972 public boolean isBlocked() { method in class:DialerCall
976 public void setBlockedStatus(boolean isBlocked) { argument
977 mIsBlocked = isBlocked;
/packages/apps/Messaging/src/com/android/messaging/ui/conversationsettings/
H A DPeopleAndOptionsFragment.java155 if (item.getOtherParticipant().isBlocked()) {
/packages/apps/TV/src/com/android/tv/
H A DMainActivity.java356 mMediaSessionWrapper.update(mTvView.isBlocked(), channel, program);
519 mMediaSessionWrapper.update(mTvView.isBlocked(), getCurrentChannel(),
1250 == TunableTvView.VIDEO_UNAVAILABLE_REASON_NO_RESOURCE || mTvView.isBlocked();
1612 mMediaSessionWrapper.update(mTvView.isBlocked(), getCurrentChannel(), getCurrentProgram());
/packages/apps/TV/src/com/android/tv/ui/
H A DTunableTvView.java850 public boolean isBlocked() { method in class:TunableTvView

Completed in 840 milliseconds