Home
last modified time | relevance | path

Searched refs:isGame (Results 1 – 2 of 2) sorted by relevance

/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
DLeanbackLauncherStrategy.java202 return launchApp(this, app, packageName, isGame(packageName)); in launch()
370 String packageName, boolean isGame) { in launchApp() argument
371 return launchApp(launcherStrategy, app, packageName, isGame, MAX_SCROLL_ATTEMPTS); in launchApp()
375 String packageName, boolean isGame, int maxScrollAttempts) { in launchApp() argument
388 if (isGame) { in launchApp()
729 private boolean isGame(String packageName) { in isGame() method in LeanbackLauncherStrategy
730 boolean isGame = false; in isGame()
738 isGame = ((appInfo.flags & ApplicationInfo.FLAG_IS_GAME) != 0) || in isGame()
740 Log.i(LOG_TAG, String.format("The package %s isGame: %b", packageName, isGame)); in isGame()
747 return isGame; in isGame()
DTvLauncherStrategy.java418 return launchApp(this, appName, packageName, isGame(packageName)); in launch()
702 String packageName, boolean isGame) {
780 private boolean isGame(String packageName) {
781 boolean isGame = false;
789 isGame = (appInfo.metaData != null && appInfo.metaData.getBoolean("isGame", false))
791 Log.i(LOG_TAG, String.format("The package %s isGame: %b", packageName, isGame));
798 return isGame;