Home
last modified time | relevance | path

Searched refs:existingInfoMap (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/phonelookup/cp2/
DCp2DefaultDirectoryPhoneLookup.java460 ImmutableMap<DialerPhoneNumber, Cp2Info> existingInfoMap) {
465 return missingPermissionsOperations.getMostRecentInfoForMissingPermissions(existingInfoMap);
477 getDeletedPhoneNumbers(existingInfoMap, lastModified);
485 findUnprocessableNumbers(existingInfoMap);
486 Map<DialerPhoneNumber, Cp2Info> existingInfoMapToProcess = existingInfoMap;
490 existingInfoMap, number -> !unprocessableNumbers.contains(number));
510 for (Entry<DialerPhoneNumber, Cp2Info> entry : existingInfoMap.entrySet()) {
554 ImmutableMap<DialerPhoneNumber, Cp2Info> existingInfoMap) {
556 PartitionedNumbers partitionedNumbers = new PartitionedNumbers(existingInfoMap.keySet());
584 Map<DialerPhoneNumber, Cp2Info> existingInfoMap,
[all …]
DCp2ExtendedDirectoryPhoneLookup.java260 ImmutableMap<DialerPhoneNumber, Cp2Info> existingInfoMap) {
263 return missingPermissionsOperations.getMostRecentInfoForMissingPermissions(existingInfoMap);
265 return Futures.immediateFuture(existingInfoMap);
DMissingPermissionsOperations.java120 ImmutableMap<DialerPhoneNumber, Cp2Info> existingInfoMap) { in getMostRecentInfoForMissingPermissions() argument
124 for (DialerPhoneNumber number : existingInfoMap.keySet()) { in getMostRecentInfoForMissingPermissions()
/packages/apps/Dialer/java/com/android/dialer/phonelookup/composite/
DCompositePhoneLookup.java173 ImmutableMap<DialerPhoneNumber, PhoneLookupInfo> existingInfoMap) { in getMostRecentInfo() argument
180 futures.add(buildSubmapAndGetMostRecentInfo(existingInfoMap, phoneLookup, isBuilt)); in getMostRecentInfo()
189 for (DialerPhoneNumber dialerPhoneNumber : existingInfoMap.keySet()) { in getMostRecentInfo()
215 ImmutableMap<DialerPhoneNumber, PhoneLookupInfo> existingInfoMap,
220 existingInfoMap,
222 phoneLookup.getSubMessage(existingInfoMap.get(dialerPhoneNumber)));
/packages/apps/Dialer/java/com/android/dialer/phonelookup/blockednumber/
DSystemBlockedNumberPhoneLookup.java84 getMostRecentInfo(ImmutableMap<DialerPhoneNumber, SystemBlockedNumberInfo> existingInfoMap) { in getMostRecentInfo() argument
87 return Futures.immediateFuture(existingInfoMap); in getMostRecentInfo()
89 return executorService.submit(() -> queryNumbers(existingInfoMap.keySet())); in getMostRecentInfo()
/packages/apps/Dialer/java/com/android/dialer/phonelookup/emergency/
DEmergencyPhoneLookup.java72 ImmutableMap<DialerPhoneNumber, EmergencyInfo> existingInfoMap) { in getMostRecentInfo() argument
85 return Futures.immediateFuture(existingInfoMap); in getMostRecentInfo()
/packages/apps/Dialer/java/com/android/dialer/phonelookup/cnap/
DCnapPhoneLookup.java127 ImmutableMap<DialerPhoneNumber, CnapInfo> existingInfoMap) { in getMostRecentInfo() argument
128 return Futures.immediateFuture(existingInfoMap); in getMostRecentInfo()
/packages/apps/Dialer/java/com/android/dialer/phonelookup/cequint/
DCequintPhoneLookup.java109 ImmutableMap<DialerPhoneNumber, CequintInfo> existingInfoMap) { in getMostRecentInfo() argument
110 return Futures.immediateFuture(existingInfoMap); in getMostRecentInfo()
/packages/apps/Dialer/java/com/android/dialer/phonelookup/spam/
DSpamPhoneLookup.java89 ImmutableMap<DialerPhoneNumber, SpamInfo> existingInfoMap) { in getMostRecentInfo() argument
93 spam.batchCheckSpamStatus(existingInfoMap.keySet()); in getMostRecentInfo()
/packages/apps/Dialer/java/com/android/dialer/phonelookup/
DPhoneLookup.java103 ImmutableMap<DialerPhoneNumber, T> existingInfoMap); in getMostRecentInfo() argument