Home | History | Annotate | Download | only in launcherhelper

Lines Matching defs:isGame

202         return launchApp(this, app, packageName, isGame(packageName));
370 String packageName, boolean isGame) {
371 return launchApp(launcherStrategy, app, packageName, isGame, MAX_SCROLL_ATTEMPTS);
375 String packageName, boolean isGame, int maxScrollAttempts) {
388 if (isGame) {
729 private boolean isGame(String packageName) {
730 boolean isGame = false;
736 // TV game apps should use the "isGame" tag added since the L release. They are
738 isGame = ((appInfo.flags & ApplicationInfo.FLAG_IS_GAME) != 0) ||
739 (appInfo.metaData != null && appInfo.metaData.getBoolean("isGame", false));
740 Log.i(LOG_TAG, String.format("The package %s isGame: %b", packageName, isGame));
747 return isGame;