Searched refs:appIntent (Results 1 – 3 of 3) sorted by relevance
218 Intent appIntent = null; in sendNotificationClickedIntent() local220 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED); in sendNotificationClickedIntent()221 appIntent.setPackage(packageName); in sendNotificationClickedIntent()222 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids); in sendNotificationClickedIntent()230 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED); in sendNotificationClickedIntent()231 appIntent.setClassName(packageName, clazz); in sendNotificationClickedIntent()232 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids); in sendNotificationClickedIntent()235 appIntent.setData(uri); in sendNotificationClickedIntent()237 appIntent.setData(Downloads.Impl.CONTENT_URI); in sendNotificationClickedIntent()241 mSystemFacade.sendBroadcast(appIntent); in sendNotificationClickedIntent()
58 final Intent appIntent = getIntentInAppIfExists(context, intent); in startActivityInAppIfPossible() local59 if (appIntent != null) { in startActivityInAppIfPossible()60 context.startActivity(appIntent); in startActivityInAppIfPossible()
292 Intent appIntent = pm.getLaunchIntentForPackage(pref.getPackageName()); in onPreferenceClick() local293 if (appIntent != null) { in onPreferenceClick()294 userContext.startActivityAsUser(appIntent, user); in onPreferenceClick()