HomeSort by relevance Sort by last modified time
    Searched refs:appIntent (Results 1 - 14 of 14) sorted by null

  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 245 Intent appIntent = null;
247 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED);
248 appIntent.setPackage(packageName);
249 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids);
257 appIntent = new Intent(DownloadManager.ACTION_NOTIFICATION_CLICKED);
258 appIntent.setClassName(packageName, clazz);
259 appIntent.putExtra(DownloadManager.EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS, ids);
262 appIntent.setData(uri);
264 appIntent.setData(Downloads.Impl.CONTENT_URI);
268 getSystemFacade(context).sendBroadcast(appIntent);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
ImplicitIntentsUtil.java 60 final Intent appIntent = getIntentInAppIfExists(context, intent);
61 if (appIntent != null) {
62 context.startActivity(appIntent);
  /platform_testing/tests/jank/androidtvjanktests/src/com/android/androidtv/janktests/
SystemAppJankTests.java 113 Intent appIntent = pm.getLaunchIntentForPackage(packageName);
114 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
115 getInstrumentation().getContext().startActivity(appIntent);
  /platform_testing/tests/functional/overviewtests/src/com/android/overview/functional/
OverviewHelper.java 69 Intent appIntent = mPackageManager.getLaunchIntentForPackage(appPackageName);
71 " is null, please check package name", appIntent);
72 appIntent.addCategory(Intent.CATEGORY_LAUNCHER);
73 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
74 mInstrumentation.getContext().startActivity(appIntent);
  /platform_testing/tests/jank/sysapp/src/com/android/sysapp/janktests/
ChromeJankTests.java 79 Intent appIntent = pm.getLaunchIntentForPackage(packageName);
80 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
81 getInstrumentation().getContext().startActivity(appIntent);
ContactsJankTests.java 80 Intent appIntent = pm.getLaunchIntentForPackage(packageName);
81 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
82 getInstrumentation().getContext().startActivity(appIntent);
YouTubeJankTests.java 76 Intent appIntent = pm.getLaunchIntentForPackage(packageName);
77 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
78 getInstrumentation().getContext().startActivity(appIntent);
BooksJankTests.java 77 Intent appIntent = pm.getLaunchIntentForPackage(packageName);
78 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
79 getInstrumentation().getContext().startActivity(appIntent);
CalendarJankTests.java 90 Intent appIntent = pm.getLaunchIntentForPackage(packageName);
91 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
92 getInstrumentation().getContext().startActivity(appIntent);
GMailJankTests.java 80 Intent appIntent = pm.getLaunchIntentForPackage(packageName);
81 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
82 getInstrumentation().getContext().startActivity(appIntent);
  /platform_testing/tests/functional/launchertests/src/com/android/launcher/functional/
HomeScreenTests.java 73 Intent appIntent = mPackageManager.getLaunchIntentForPackage(appPackageName);
74 appIntent.addCategory(Intent.CATEGORY_LAUNCHER);
75 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
76 getInstrumentation().getContext().startActivity(appIntent);
  /platform_testing/tests/jank/dialer/src/com/android/dialer/janktests/
DialerJankTests.java 86 Intent appIntent = pm.getLaunchIntentForPackage(packageName);
87 appIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
88 getInstrumentation().getContext().startActivity(appIntent);
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 303 Intent appIntent = pm.getLaunchIntentForPackage(pref.getPackageName());
304 if (appIntent != null) {
305 userContext.startActivityAsUser(appIntent, user);
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerService.java     [all...]

Completed in 631 milliseconds