Searched refs:adjSource (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java125 Object adjSource; // Debugging: option dependent object. field in class:ProcessRecord
126 int adjSourceOom; // Debugging: oom_adj of adjSource's process.
542 if (adjSource != null || adjTarget != null) {
553 if (adjSource instanceof ProcessRecord) {
555 sb.append(((ProcessRecord)adjSource).toShortString());
557 } else if (adjSource != null) {
558 sb.append(adjSource.toString());
H A DActivityManagerService.java10277 if (app.adjSource instanceof ProcessRecord) {
10278 currApp.importanceReasonPid = ((ProcessRecord)app.adjSource).pid;
10281 } else if (app.adjSource instanceof ActivityRecord) {
10282 ActivityRecord r = (ActivityRecord)app.adjSource;
11589 if (r.adjSource != null || r.adjTarget != null) {
11600 if (r.adjSource instanceof ProcessRecord) {
11602 pw.print(((ProcessRecord)r.adjSource).toShortString());
11604 } else if (r.adjSource != null) {
11605 pw.println(r.adjSource.toString());
14256 app.adjSource
[all...]

Completed in 46 milliseconds