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.java8672 int worstType = 0; in killPids() local
8677 if (type > worstType) { in killPids()
8678 worstType = type; in killPids()
8685 if (worstType < ProcessList.CACHED_APP_MAX_ADJ in killPids()
8686 && worstType > ProcessList.CACHED_APP_MIN_ADJ) { in killPids()
8687 worstType = ProcessList.CACHED_APP_MIN_ADJ; in killPids()
8692 if (!secure && worstType < ProcessList.SERVICE_ADJ) { in killPids()
8693 worstType = ProcessList.SERVICE_ADJ; in killPids()
8696 Slog.w(TAG, "Killing processes " + reason + " at adjustment " + worstType); in killPids()
8703 if (adj >= worstType && !proc.killedByAm) { in killPids()