Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/app/
H A DGameManagerService.java355 int loadingBoostDuration = getLoadingBoostDuration(packageName, userId); in doHandleMessage() local
356 loadingBoostDuration = loadingBoostDuration > 0 ? loadingBoostDuration in doHandleMessage()
360 loadingBoostDuration); in doHandleMessage() local
700 public synchronized void setLoadingBoostDuration(int loadingBoostDuration) { in setLoadingBoostDuration() argument
701 mLoadingBoostDuration = loadingBoostDuration; in setLoadingBoostDuration()
1233 int loadingBoostDuration = getLoadingBoostDuration(packageName, userId); in notifyGraphicsEnvironmentSetup() local
1234 if (loadingBoostDuration != -1) { in notifyGraphicsEnvironmentSetup()
1235 if (loadingBoostDuration == 0 || loadingBoostDuration > LOADING_BOOST_MAX_DURATION) { in notifyGraphicsEnvironmentSetup()
1236 loadingBoostDuration = LOADING_BOOST_MAX_DURATION; in notifyGraphicsEnvironmentSetup()
1249 mHandler.obtainMessage(CANCEL_GAME_LOADING_MODE), loadingBoostDuration); in notifyGraphicsEnvironmentSetup() local
H A DGameManagerSettings.java335 final int loadingBoostDuration = parser.getAttributeInt(null, in readGameModeConfig() local
337 modeConfig.setLoadingBoostDuration(loadingBoostDuration); in readGameModeConfig()