Searched refs:appIntent (Results 1 – 3 of 3) sorted by relevance
245 Intent appIntent = null; in sendNotificationClickedIntent() local247 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED); in sendNotificationClickedIntent()248 appIntent.setPackage(packageName); in sendNotificationClickedIntent()249 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids); in sendNotificationClickedIntent()257 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED); in sendNotificationClickedIntent()258 appIntent.setClassName(packageName, clazz); in sendNotificationClickedIntent()259 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids); in sendNotificationClickedIntent()262 appIntent.setData(uri); in sendNotificationClickedIntent()264 appIntent.setData(Downloads.Impl.CONTENT_URI); in sendNotificationClickedIntent()268 getSystemFacade(context).sendBroadcast(appIntent); in sendNotificationClickedIntent()
60 final Intent appIntent = getIntentInAppIfExists(context, intent); in startActivityInAppIfPossible() local61 if (appIntent != null) { in startActivityInAppIfPossible()62 context.startActivity(appIntent); in startActivityInAppIfPossible()
303 Intent appIntent = pm.getLaunchIntentForPackage(pref.getPackageName()); in onPreferenceClick() local304 if (appIntent != null) { in onPreferenceClick()305 userContext.startActivityAsUser(appIntent, user); in onPreferenceClick()