Searched defs:intentAction (Results 1 - 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDbModifierWithNotification.java205 for (String intentAction : intentActions) {
207 boolean includeSelfChangeExtra = intentAction.equals(Intent.ACTION_PROVIDER_CHANGED);
209 getBroadcastReceiverComponents(intentAction, notificationUri)) {
217 Intent intent = new Intent(intentAction, notificationUri);
237 private List<ComponentName> getBroadcastReceiverComponents(String intentAction, Uri uri) { argument
238 Intent intent = new Intent(intentAction, uri);
/packages/apps/Email/src/com/android/email/service/
H A DEmailServiceUtils.java40 public static void startService(Context context, String intentAction) { argument
41 context.startService(new Intent(intentAction));
51 public static IEmailService getService(Context context, String intentAction, argument
53 return new EmailServiceProxy(context, intentAction, callback);
59 public static boolean isServiceAvailable(Context context, String intentAction) { argument
60 return new EmailServiceProxy(context, intentAction, null).test();
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionData.java167 public SuggestionData setIntentAction(String intentAction) { argument
168 mIntentAction = intentAction;
323 appendField(builder, "intentAction", mIntentAction);

Completed in 6041 milliseconds