Searched refs:appIntent (Results 1 – 5 of 5) sorted by relevance
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadReceiver.java | 250 Intent appIntent = null; in sendNotificationClickedIntent() local 252 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED); in sendNotificationClickedIntent() 253 appIntent.setPackage(packageName); in sendNotificationClickedIntent() 254 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids); in sendNotificationClickedIntent() 262 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED); in sendNotificationClickedIntent() 263 appIntent.setClassName(packageName, clazz); in sendNotificationClickedIntent() 264 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids); in sendNotificationClickedIntent() 267 appIntent.setData(uri); in sendNotificationClickedIntent() 269 appIntent.setData(Downloads.Impl.CONTENT_URI); in sendNotificationClickedIntent() 275 getSystemFacade(context).sendBroadcast(appIntent, null, options.toBundle()); in sendNotificationClickedIntent()
|
/packages/apps/Settings/src/com/android/settings/notification/history/ |
D | NotificationSbnViewHolder.java | 99 Intent appIntent = itemView.getContext().getPackageManager() in addOnClick() local 102 if (isPendingIntentValid || appIntent != null) { in addOnClick() 117 } else if (appIntent != null) { in addOnClick() 118 appIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in addOnClick() 120 itemView.getContext().startActivityAsUser(appIntent, UserHandle.of(userId)); in addOnClick()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | ImplicitIntentsUtil.java | 67 final Intent appIntent = getIntentInAppIfExists(context, intent); in startActivityInAppIfPossible() local 68 if (appIntent != null) { in startActivityInAppIfPossible() 69 context.startActivity(appIntent); in startActivityInAppIfPossible()
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
D | VpnSettings.java | 393 Intent appIntent = pm.getLaunchIntentForPackage(pref.getPackageName()); in onPreferenceClick() local 394 if (appIntent != null) { in onPreferenceClick() 395 userContext.startActivityAsUser(appIntent, user); in onPreferenceClick()
|
/packages/modules/Connectivity/service/src/com/android/server/ |
D | ConnectivityService.java | 5055 final Intent appIntent = new Intent(ConnectivityManager.ACTION_CAPTIVE_PORTAL_SIGN_IN); 5056 appIntent.putExtras(appExtras); 5057 appIntent.putExtra(ConnectivityManager.EXTRA_CAPTIVE_PORTAL, 5059 appIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT | Intent.FLAG_ACTIVITY_NEW_TASK); 5063 mContext.startActivityAsUser(appIntent, UserHandle.CURRENT);
|