Home
last modified time | relevance | path

Searched refs:intentAction (Results 1 – 20 of 20) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/
DNotificationActionIntentService.java71 private static void logNotificationAction(String intentAction, NotificationAction action) { in logNotificationAction() argument
75 if (ACTION_ARCHIVE_REMOVE_LABEL.equals(intentAction)) { in logNotificationAction()
78 } else if (ACTION_DELETE.equals(intentAction)) { in logNotificationAction()
82 eventAction = intentAction; in logNotificationAction()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDbModifierWithNotification.java276 for (String intentAction : intentActions) { in notifyVoicemailChange()
278 boolean includeSelfChangeExtra = intentAction.equals(Intent.ACTION_PROVIDER_CHANGED); in notifyVoicemailChange()
280 getBroadcastReceiverComponents(intentAction, notificationUri)) { in notifyVoicemailChange()
289 Intent intent = new Intent(intentAction, notificationUri); in notifyVoicemailChange()
309 private List<ComponentName> getBroadcastReceiverComponents(String intentAction, Uri uri) { in getBroadcastReceiverComponents() argument
310 Intent intent = new Intent(intentAction, uri); in getBroadcastReceiverComponents()
DGlobalSearchSupport.java81 String intentAction; field in GlobalSearchSupport.SearchSuggestion
107 list.add(intentAction); // intentAction in asList()
159 intentAction = null; in reset()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DSystemBroadcastReceiver.java70 final String intentAction = intent.getAction(); in onReceive() local
71 if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(intentAction)) { in onReceive()
86 } else if (Intent.ACTION_BOOT_COMPLETED.equals(intentAction)) { in onReceive()
89 } else if (Intent.ACTION_LOCALE_CHANGED.equals(intentAction)) { in onReceive()
/packages/apps/Email/provider_src/com/android/email/service/
DEmailServiceUtils.java91 if (info != null && info.intentAction != null) { in killService()
103 if (info != null && info.intentAction != null) { in startService()
114 if (info.intentAction != null) { in startRemoteServices()
126 if (info.intentAction != null) { in areRemoteServicesInstalled()
138 if (info.intentAction != null) { in setRemoteServicesLogging()
164 final Intent serviceIntent = new Intent(info.intentAction); in getServiceIntent()
188 String intentAction; field in EmailServiceUtils.EmailServiceInfo
570 info.intentAction = ta.getString(R.styleable.EmailServiceInfo_intent); in getServiceMap()
633 info.intentAction == null && in getServiceMap()
638 if (info.klass != null && info.intentAction != null) { in getServiceMap()
/packages/apps/Music/src/com/android/music/
DMediaButtonIntentReceiver.java60 String intentAction = intent.getAction(); in onReceive() local
61 if (AudioManager.ACTION_AUDIO_BECOMING_NOISY.equals(intentAction)) { in onReceive()
66 } else if (Intent.ACTION_MEDIA_BUTTON.equals(intentAction)) { in onReceive()
/packages/apps/Settings/src/com/android/settings/search/
DIndex.java592 sir.intentAction = action; in addIndexablesForXmlResourceUri()
653 data.intentAction = action; in addIndexablesForRawDataUri()
750 raw.intentAction, in indexOneRaw()
791 sir.intentAction, sir.intentTargetPackage, sir.intentTargetClass, in indexOneResource()
843 String intentAction, String intentTargetPackage, String intentTargetClass, in indexFromResource() argument
883 keywords, intentAction, intentTargetPackage, intentTargetClass, true, in indexFromResource()
915 keywords, intentAction, intentTargetPackage, intentTargetClass, in indexFromResource()
927 keywords, intentAction, intentTargetPackage, intentTargetClass, in indexFromResource()
976 raw.intentAction, in indexFromProvider()
1004 item.intentAction, item.intentTargetPackage, in indexFromProvider()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationActionUtils.java389 final String intentAction = in getNotificationActionPendingIntent() local
392 final Intent intent = new Intent(intentAction); in getNotificationActionPendingIntent()
400 final String intentAction = NotificationActionIntentService.ACTION_DELETE; in getNotificationActionPendingIntent() local
402 final Intent intent = new Intent(intentAction); in getNotificationActionPendingIntent()
449 final String intentAction = (action == NotificationActionType.ARCHIVE_REMOVE_LABEL) in getWearNotificationActionPendingIntent() local
453 final Intent intent = new Intent(intentAction); in getWearNotificationActionPendingIntent()
/packages/apps/TV/src/com/android/tv/search/
DLocalSearchProvider.java110 row.add(result.intentAction); in createSuggestionsCursor()
157 public String intentAction; field in LocalSearchProvider.SearchResult
DDataManagerSearch.java191 result.intentAction = Intent.ACTION_VIEW; in addResult()
202 result.intentAction = Intent.ACTION_VIEW; in addResult()
DTvProviderSearch.java235 result.intentAction = Intent.ACTION_VIEW; in searchChannels()
379 result.intentAction = Intent.ACTION_VIEW; in searchPrograms()
465 result.intentAction = Intent.ACTION_VIEW; in buildSearchResultForInput()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSuggestionData.java167 public SuggestionData setIntentAction(String intentAction) { in setIntentAction() argument
168 mIntentAction = intentAction; in setIntentAction()
/packages/apps/Settings/src/com/android/settings/applications/
DVrListenerSettings.java33 c.intentAction = VrListenerService.SERVICE_INTERFACE; in getVrListenerConfig()
/packages/apps/Camera2/src/com/android/camera/
DCameraActivity.java1696 String intentAction = getIntent().getAction(); in getModeIndex() local
1697 if (MediaStore.INTENT_ACTION_VIDEO_CAMERA.equals(intentAction) in getModeIndex()
1698 || MediaStore.ACTION_VIDEO_CAPTURE.equals(intentAction)) { in getModeIndex()
1700 } else if (MediaStore.ACTION_IMAGE_CAPTURE.equals(intentAction) in getModeIndex()
1701 || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(intentAction)) { in getModeIndex()
1704 } else if (MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA.equals(intentAction) in getModeIndex()
1705 ||MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE.equals(intentAction) in getModeIndex()
1706 || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(intentAction)) { in getModeIndex()
/packages/apps/Settings/src/com/android/settings/
DWallpaperTypeSettings.java101 data.intentAction = Intent.ACTION_SET_WALLPAPER;
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationAccessSettings.java53 c.intentAction = NotificationListenerService.SERVICE_INTERFACE; in getNotificationListenerConfig()
DZenModeAutomationSettings.java206 c.intentAction = ConditionProviderService.SERVICE_INTERFACE; in getConditionProviderConfig()
/packages/apps/Settings/src/com/android/settings/utils/
DZenServiceListing.java122 new Intent(c.intentAction), in getServices()
DManagedServiceSettings.java177 public String intentAction;
DServiceListing.java106 new Intent(c.intentAction), in getServices()