Home
last modified time | relevance | path

Searched refs:contactExists (Results 1 – 15 of 15) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
DCallFilteringResult.java83 public Builder setContactExists(boolean contactExists) { in setContactExists() argument
84 mContactExists = contactExists; in setContactExists()
99 .setContactExists(result.contactExists); in from()
119 public boolean contactExists; field in CallFilteringResult
124 boolean shouldScreenViaAudio, boolean contactExists) { in CallFilteringResult() argument
134 this.contactExists = contactExists; in CallFilteringResult()
187 .setContactExists(contactExists || other.contactExists) in combine()
215 .setContactExists(contactExists || other.contactExists) in getCombinedCallFilteringResult()
233 if (contactExists != that.contactExists) return false; in equals()
278 if (contactExists) { in toString()
DCallScreeningServiceFilter.java101 .setContactExists(mPriorStageResult.contactExists) in disallowCall()
128 .setContactExists(mPriorStageResult.contactExists) in silenceCall()
161 .setContactExists(mPriorStageResult.contactExists) in screenCallFurther()
252 if (priorStageResult.contactExists && (!hasReadContactsPermission())) { in startFilterLookup()
DDirectToVoicemailFilter.java59 .setContactExists(info.contactExists) in startFilterLookup()
DBlockCheckerFilter.java77 if (info != null && info.contactExists) { in startFilterLookup()
/packages/apps/Dialer/java/com/android/incallui/
DCallerInfo.java93 public boolean contactExists; field in CallerInfo
175 info.contactExists = false; in getCallerInfo()
288 info.contactExists = true; in getCallerInfo()
341 if (!previousResult.contactExists && PhoneNumberHelper.isUriNumber(number)) { in doSecondaryLookupIfNecessary()
527 .append("\ncontactExists: " + contactExists) in toString()
DContactInfoCache.java275 if (info.contactExists) { in populateCacheEntry()
459 if (callerInfo.contactExists in updateCallerInfoInCacheOnAnyThread()
534 if (!callerInfo.contactExists in maybeUpdateFromCequintCallerId()
542 callerInfo.contactExists = true; in maybeUpdateFromCequintCallerId()
834 if (!callerInfo.contactExists && phoneNumberService != null) { in onQueryComplete()
843 if (callerInfo.contactExists) { in onQueryComplete()
DCallerInfoAsyncQuery.java102 if ((ci != null && ci.contactExists) in startQuery()
301 if (!isListenerCalled && (ci.contactExists || count == 0)) { in onDirectoryQueryComplete()
318 if (ci.contactExists && cachedNumberLookupService != null) { in addCallerInfoIntoCache()
DCallerInfoUtils.java89 info.contactExists = false; in buildCallerInfo()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallScreeningServiceFilterTest.java191 inputResult.contactExists = true; in testNoBindingCondition()
203 inputResult.contactExists = true; in testBindingCondition()
DBasicCallTests.java389 sendToVoicemailCallerInfo.contactExists = true; in testIncomingCallFromContactWithSendToVoicemailIsRejected()
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfo.java67 public boolean contactExists; field in ContactInfo
DContactInfoHelper.java371 info.contactExists = true; in createPhoneLookupContactInfo()
636 if (!info.contactExists && info.photoUri == null && cequintCallerIdContact.photoUri() != null) { in updateFromCequintCallerId()
/packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
DContactInfoCache.java165 if (info != null && !info.contactExists) { in queryContactInfo()
/packages/services/Telecomm/src/com/android/server/telecom/
DCall.java2693 if (mCallerInfo == null || !mCallerInfo.contactExists) { in getContactUri()
DCallsManager.java1683 && uriCallerInfoPair.second.contactExists; in startOutgoingCall()