Home
last modified time | relevance | path

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

/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationUtils.java442 final FolderPreferences folderPreferences = new FolderPreferences( in validateAccountNotifications() local
445 if (!folderPreferences.areNotificationsEnabled()) { in validateAccountNotifications()
679 final FolderPreferences folderPreferences = in validateNotifications() local
685 moveNotificationSetting(accountPreferences, folderPreferences); in validateNotifications()
688 if (!folderPreferences.areNotificationsEnabled()) { in validateNotifications()
720 configureLatestEventInfoFromConversation(context, account, folderPreferences, in validateNotifications()
728 final boolean vibrate = folderPreferences.isNotificationVibrateEnabled(); in validateNotifications()
729 final String ringtoneUri = folderPreferences.getNotificationRingtoneUri(); in validateNotifications()
730 final boolean notifyOnce = !folderPreferences.isEveryMessageNotificationEnabled(); in validateNotifications()
742 Boolean.toString(folderPreferences.isNotificationVibrateEnabled())); in validateNotifications()
[all …]
/packages/apps/Email/src/com/android/email/preferences/
DEmailPreferenceMigrator.java149 final FolderPreferences folderPreferences = in migrate() local
155 folderPreferences.setNotificationsEnabled(notify); in migrate()
158 folderPreferences.setNotificationRingtoneUri(ringtoneUri); in migrate()
162 folderPreferences.setNotificationVibrateEnabled(vibrate); in migrate()
164 folderPreferences.commit(); in migrate()
/packages/apps/Email/src/com/android/email/
DEmailNotificationController.java360 final FolderPreferences folderPreferences = new FolderPreferences( in setupSoundAndVibration() local
363 ringtoneUri = folderPreferences.getNotificationRingtoneUri(); in setupSoundAndVibration()
364 vibrate = folderPreferences.isNotificationVibrateEnabled(); in setupSoundAndVibration()