Home
last modified time | relevance | path

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

/packages/apps/Email/src/com/android/email/service/
DEmailServiceUtils.java40 public static void startService(Context context, String intentAction) { in startService() argument
41 context.startService(new Intent(intentAction)); in startService()
51 public static IEmailService getService(Context context, String intentAction, in getService() argument
53 return new EmailServiceProxy(context, intentAction, callback); in getService()
59 public static boolean isServiceAvailable(Context context, String intentAction) { in isServiceAvailable() argument
60 return new EmailServiceProxy(context, intentAction, null).test(); in isServiceAvailable()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDbModifierWithNotification.java205 for (String intentAction : intentActions) { in notifyVoicemailChange()
207 boolean includeSelfChangeExtra = intentAction.equals(Intent.ACTION_PROVIDER_CHANGED); in notifyVoicemailChange()
209 getBroadcastReceiverComponents(intentAction, notificationUri)) { in notifyVoicemailChange()
217 Intent intent = new Intent(intentAction, notificationUri); in notifyVoicemailChange()
237 private List<ComponentName> getBroadcastReceiverComponents(String intentAction, Uri uri) { in getBroadcastReceiverComponents() argument
238 Intent intent = new Intent(intentAction, uri); in getBroadcastReceiverComponents()
DGlobalSearchSupport.java80 String intentAction; field in GlobalSearchSupport.SearchSuggestion
106 list.add(intentAction); // intentAction in asList()
158 intentAction = null; in reset()
/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/
DDebugIntentSender.java44 String intentAction = mIntentField.getText().toString();
49 Intent intent = new Intent(intentAction);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DShortcutsProvider.java169 String intentAction = shortcut.getAsString(SearchManager.SUGGEST_COLUMN_INTENT_ACTION); in makeSuggestion() local
184 suggestion.setIntentAction(intentAction); in makeSuggestion()
DSuggestionData.java167 public SuggestionData setIntentAction(String intentAction) { in setIntentAction() argument
168 mIntentAction = intentAction; in setIntentAction()
DShortcutRepositoryImplLog.java529 String intentAction = suggestion.getSuggestionIntentAction(); in makeShortcutRow() local
566 cv.put(Shortcuts.intent_action.name(), intentAction); in makeShortcutRow() local
586 String intentAction = suggestion.getSuggestionIntentAction(); in makeIntentKey() local
599 if (intentAction != null) { in makeIntentKey()
600 key.append(intentAction); in makeIntentKey()