Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java9181 int worstType = 0; in killPids() local
9186 if (type > worstType) { in killPids()
9187 worstType = type; in killPids()
9194 if (worstType < ProcessList.CACHED_APP_MAX_ADJ in killPids()
9195 && worstType > ProcessList.CACHED_APP_MIN_ADJ) { in killPids()
9196 worstType = ProcessList.CACHED_APP_MIN_ADJ; in killPids()
9201 if (!secure && worstType < ProcessList.SERVICE_ADJ) { in killPids()
9202 worstType = ProcessList.SERVICE_ADJ; in killPids()
9205 Slog.w(TAG, "Killing processes " + reason + " at adjustment " + worstType); in killPids()
9212 if (adj >= worstType && !proc.killedByAm) { in killPids()