Home | History | Annotate | Download | only in am

Lines Matching refs:adj

123                                 // When true the process will oom adj score will be set to
156 int adjTypeCode; // Debugging: adj code to report to app.
553 int modifyRawOomAdj(int adj) {
560 if (adj < ProcessList.FOREGROUND_APP_ADJ) {
562 } else if (adj < ProcessList.VISIBLE_APP_ADJ) {
563 adj = ProcessList.VISIBLE_APP_ADJ;
564 } else if (adj < ProcessList.PERCEPTIBLE_APP_ADJ) {
565 adj = ProcessList.PERCEPTIBLE_APP_ADJ;
566 } else if (adj < ProcessList.CACHED_APP_MIN_ADJ) {
567 adj = ProcessList.CACHED_APP_MIN_ADJ;
568 } else if (adj < ProcessList.CACHED_APP_MAX_ADJ) {
569 adj++;
572 return adj;
602 Slog.i(TAG, "Killing " + toShortString() + " (adj " + setAdj + "): " + reason);