Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/os/
DSchedulingPolicyService.java71 int[] nativePids = Process.getPidsForCommands(MEDIA_PROCESS_NAMES); in SchedulingPolicyService() local
72 if (nativePids != null && nativePids.length == 1) { in SchedulingPolicyService()
73 mBoostedPid = nativePids[0]; in SchedulingPolicyService()
74 disableCpusetBoost(nativePids[0]); in SchedulingPolicyService()
125 int[] nativePids = Process.getPidsForCommands(MEDIA_PROCESS_NAMES); in requestCpusetBoost() local
126 if (nativePids == null || nativePids.length != 1) { in requestCpusetBoost()
133 return enableCpusetBoost(nativePids[0], client); in requestCpusetBoost()
135 return disableCpusetBoost(nativePids[0]); in requestCpusetBoost()
/frameworks/opt/car/services/src/com/android/internal/car/
DCarServiceHelperService.java410 int[] nativePids = Process.getPidsForCommands(Watchdog.NATIVE_STACKS_OF_INTEREST); in getInterestingNativePids() local
411 if (nativePids != null) { in getInterestingNativePids()
412 pids.ensureCapacity(pids.size() + nativePids.length); in getInterestingNativePids()
413 for (int i : nativePids) { in getInterestingNativePids()
/frameworks/base/services/core/java/com/android/server/
DWatchdog.java504 int[] nativePids = Process.getPidsForCommands(NATIVE_STACKS_OF_INTEREST); in getInterestingNativePids() local
505 if (nativePids != null) { in getInterestingNativePids()
506 pids.ensureCapacity(pids.size() + nativePids.length); in getInterestingNativePids()
507 for (int i : nativePids) { in getInterestingNativePids()
/frameworks/base/services/core/java/com/android/server/am/
DProcessRecord.java1494 ArrayList<Integer> nativePids = null; in appNotResponding() local
1497 nativePids = new ArrayList<>(pids.length); in appNotResponding()
1499 nativePids.add(i); in appNotResponding()
1507 nativePids); in appNotResponding()
DActivityManagerService.java3787 ArrayList<Integer> nativePids) { in dumpStackTraces() argument
3790 Slog.i(TAG, "dumpStackTraces pids=" + lastPids + " nativepids=" + nativePids); in dumpStackTraces()
3832 dumpStackTraces(tracesFile.getAbsolutePath(), firstPids, nativePids, extraPids); in dumpStackTraces() local
3921 ArrayList<Integer> nativePids, ArrayList<Integer> extraPids) { in dumpStackTraces() argument
3954 if (nativePids != null) { in dumpStackTraces()
3955 for (int pid : nativePids) { in dumpStackTraces()