Home
last modified time | relevance | path

Searched refs:queryHelper (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/sync/
DOmtpVvmSyncService.java60 private final VoicemailsQueryHelper queryHelper; field in OmtpVvmSyncService
64 queryHelper = new VoicemailsQueryHelper(this.context); in OmtpVvmSyncService()
197 List<Voicemail> oldestVoicemails = queryHelper.oldestVoicemailsOnServer(numVoicemails); in deleteAndArchiveVM()
200 queryHelper.markArchivedInDatabase(oldestVoicemails); in deleteAndArchiveVM()
214 List<Voicemail> localVoicemails = queryHelper.getAllVoicemails(account); in syncAll()
215 List<Voicemail> deletedVoicemails = queryHelper.getDeletedVoicemails(account); in syncAll()
228 queryHelper.deleteFromDatabase(deletedVoicemails); in syncAll()
252 queryHelper.deleteNonArchivedFromDatabase(localVoicemail); in syncAll()
255 queryHelper.markReadInDatabase(localVoicemail); in syncAll()
264 queryHelper.updateWithTranscription(localVoicemail, remoteVoicemail.getTranscription()); in syncAll()
[all …]
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DVisualVoicemailUpdateTask.java50 updateNotification(input.context, input.queryHelper, input.queryHandler); in doInBackground()
63 CallLogNotificationsQueryHelper queryHelper, in updateNotification() argument
68 List<NewCall> voicemailsToNotify = queryHelper.getNewVoicemails(); in updateNotification()
85 voicemailsToNotify.addAll(getAndUpdateVoicemailsWithExistingNotification(context, queryHelper)); in updateNotification()
102 queryHelper.getContactInfo( in updateNotification()
149 Context context, CallLogNotificationsQueryHelper queryHelper) { in getAndUpdateVoicemailsWithExistingNotification() argument
163 NewCall existingCall = queryHelper.getNewCallsQuery().queryUnreadVoicemail(Uri.parse(uri)); in getAndUpdateVoicemailsWithExistingNotification()
260 @NonNull final CallLogNotificationsQueryHelper queryHelper; field in VisualVoicemailUpdateTask.Input
265 CallLogNotificationsQueryHelper queryHelper, in Input() argument
268 this.queryHelper = queryHelper; in Input()
/packages/apps/Dialer/java/com/android/voicemail/impl/sms/
DOmtpMessageReceiver.java153 VoicemailsQueryHelper queryHelper = new VoicemailsQueryHelper(context); in processSync() local
154 if (queryHelper.isVoicemailUnique(voicemail)) { in processSync()