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

  /frameworks/base/tests/Compatibility/src/com/android/compatibilitytest/
AppCompatibility.java 138 Intent homeIntent = new Intent(Intent.ACTION_MAIN);
139 homeIntent.addCategory(Intent.CATEGORY_HOME);
140 homeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
170 mContext.startActivity(homeIntent);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsActivity.java 151 Intent homeIntent = new Intent(Intent.ACTION_MAIN, null);
152 homeIntent.addCategory(Intent.CATEGORY_HOME);
153 homeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
155 startActivityAsUser(homeIntent, new UserHandle(UserHandle.USER_CURRENT));
  /frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java 255 Intent homeIntent = new Intent(Intent.ACTION_MAIN);
256 homeIntent.addCategory(Intent.CATEGORY_HOME);
257 homeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
259 getInstrumentation().getContext().startActivity(homeIntent);
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 160 Intent homeIntent = new Intent(Intent.ACTION_MAIN);
161 homeIntent.addCategory(Intent.CATEGORY_HOME);
162 homeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
164 getInstrumentation().getContext().startActivity(homeIntent);
  /frameworks/base/services/java/com/android/server/
UiModeManagerService.java 493 Intent homeIntent = buildHomeIntent(category);
494 if (Sandman.shouldStartDockApp(mContext, homeIntent)) {
497 null, null, homeIntent, null, null, null, 0, 0,
502 Slog.e(TAG, "Could not start dock app: " + homeIntent
506 Slog.e(TAG, "Could not start dock app: " + homeIntent, ex);

Completed in 86 milliseconds