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.java7135 int worstType = 0; in killPids() local
7140 if (type > worstType) { in killPids()
7141 worstType = type; in killPids()
7148 if (worstType < ProcessList.CACHED_APP_MAX_ADJ in killPids()
7149 && worstType > ProcessList.CACHED_APP_MIN_ADJ) { in killPids()
7150 worstType = ProcessList.CACHED_APP_MIN_ADJ; in killPids()
7155 if (!secure && worstType < ProcessList.SERVICE_ADJ) { in killPids()
7156 worstType = ProcessList.SERVICE_ADJ; in killPids()
7159 Slog.w(TAG, "Killing processes " + reason + " at adjustment " + worstType); in killPids()
7166 if (adj >= worstType && !proc.isKilledByAm()) { in killPids()