Home
last modified time | relevance | path

Searched refs:newCalls (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DMissedCallNotifier.java113 List<NewCall> newCalls = callLogNotificationsQueryHelper.getNewMissedCalls(); in updateMissedCallNotification() local
115 removeSelfManagedCalls(newCalls); in updateMissedCallNotification()
117 if ((newCalls != null && newCalls.isEmpty()) || count == 0) { in updateMissedCallNotification()
124 if (newCalls != null) { in updateMissedCallNotification()
126 && count != newCalls.size()) { in updateMissedCallNotification()
133 + newCalls.size()); in updateMissedCallNotification()
135 count = newCalls.size(); in updateMissedCallNotification()
146 boolean useCallList = newCalls != null; in updateMissedCallNotification()
154 ? newCalls.get(0) in updateMissedCallNotification()
244 for (NewCall call : newCalls) { in updateMissedCallNotification()
[all …]
DVisualVoicemailUpdateTask.java178 Context context, FilteredNumberAsyncQueryHandler queryHandler, List<NewCall> newCalls) { in filterBlockedNumbers() argument
181 for (NewCall newCall : newCalls) { in filterBlockedNumbers()
198 private static List<NewCall> filterSpamNumbers(Context context, List<NewCall> newCalls) { in filterSpamNumbers() argument
201 return newCalls; in filterSpamNumbers()
205 for (NewCall newCall : newCalls) { in filterSpamNumbers()
DVisualVoicemailNotifier.java73 @NonNull List<NewCall> newCalls, in showNotifications() argument
84 R.plurals.notification_voicemail_title, newCalls.size(), newCalls.size()); in showNotifications()
103 PhoneAccountHandle handle = getAccountForCall(context, newCalls.get(0)); in showNotifications()
110 for (NewCall voicemail : newCalls) { in showNotifications()
DCallLogNotificationsQueryHelper.java399 List<NewCall> newCalls = new ArrayList<>(); in query() local
401 newCalls.add(createNewCallsFromCursor(cursor)); in query()
403 return newCalls; in query()