Searched refs:appIntent (Results 1 – 4 of 4) sorted by relevance
269 Intent appIntent = null; in sendNotificationClickedIntent() local271 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED); in sendNotificationClickedIntent()272 appIntent.setPackage(packageName); in sendNotificationClickedIntent()273 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids); in sendNotificationClickedIntent()281 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED); in sendNotificationClickedIntent()282 appIntent.setClassName(packageName, clazz); in sendNotificationClickedIntent()283 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids); in sendNotificationClickedIntent()286 appIntent.setData(uri); in sendNotificationClickedIntent()288 appIntent.setData(Downloads.Impl.CONTENT_URI); in sendNotificationClickedIntent()294 getSystemFacade(context).sendBroadcast(appIntent, null, options.toBundle()); in sendNotificationClickedIntent()
67 final Intent appIntent = getIntentInAppIfExists(context, intent); in startActivityInAppIfPossible() local68 if (appIntent != null) { in startActivityInAppIfPossible()69 context.startActivity(appIntent); in startActivityInAppIfPossible()
386 Intent appIntent = pm.getLaunchIntentForPackage(pref.getPackageName()); in onPreferenceClick() local387 if (appIntent != null) { in onPreferenceClick()388 userContext.startActivityAsUser(appIntent, user); in onPreferenceClick()