Lines Matching refs:existingCacheEntry
445 ContactCacheEntry existingCacheEntry = infoMap.get(callId); in updateCallerInfoInCacheOnAnyThread() local
446 Log.d(TAG, "Existing cacheEntry in hashMap " + existingCacheEntry); in updateCallerInfoInCacheOnAnyThread()
450 if (existingCacheEntry != null) { in updateCallerInfoInCacheOnAnyThread()
451 if (existingCacheEntry.isEmergencyNumber) { in updateCallerInfoInCacheOnAnyThread()
453 } else if (existingCacheEntry.isVoicemailNumber) { in updateCallerInfoInCacheOnAnyThread()
475 if (existingCacheEntry != null in updateCallerInfoInCacheOnAnyThread()
476 && existingCacheEntry.displayPhotoUri != null in updateCallerInfoInCacheOnAnyThread()
477 && existingCacheEntry.displayPhotoUri.equals(cacheEntry.displayPhotoUri) in updateCallerInfoInCacheOnAnyThread()
478 && existingCacheEntry.photo != null) { in updateCallerInfoInCacheOnAnyThread()
480 cacheEntry.photo = existingCacheEntry.photo; in updateCallerInfoInCacheOnAnyThread()
481 cacheEntry.photoType = existingCacheEntry.photoType; in updateCallerInfoInCacheOnAnyThread()
960 final ContactCacheEntry existingCacheEntry = infoMap.get(callId); in isWaitingForThisQuery() local
961 if (existingCacheEntry == null) { in isWaitingForThisQuery()
967 int waitingQueryId = existingCacheEntry.queryId; in isWaitingForThisQuery()