Home
last modified time | relevance | path

Searched refs:tracesPath (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
DWatchdog.java566 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null); in dumpKernelStackTraces() local
567 if (tracesPath == null || tracesPath.length() == 0) { in dumpKernelStackTraces()
571 native_dumpKernelStacks(tracesPath); in dumpKernelStackTraces()
572 return new File(tracesPath); in dumpKernelStackTraces()
575 private native void native_dumpKernelStacks(String tracesPath); in native_dumpKernelStacks() argument
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java5463 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null); in dumpStackTraces() local
5464 if (tracesPath == null || tracesPath.length() == 0) { in dumpStackTraces()
5468 File tracesFile = new File(tracesPath); in dumpStackTraces()
5474 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e); in dumpStackTraces()
5478 dumpStackTraces(tracesPath, firstPids, processCpuTracker, lastPids, nativePids); in dumpStackTraces()
5490 public DumpStackFileObserver(String tracesPath) { in DumpStackFileObserver() argument
5491 super(tracesPath, FileObserver.CLOSE_WRITE); in DumpStackFileObserver()
5492 mTracesPath = tracesPath; in DumpStackFileObserver()
5539 private static void dumpStackTraces(String tracesPath, ArrayList<Integer> firstPids, in dumpStackTraces() argument
5544 DumpStackFileObserver observer = new DumpStackFileObserver(tracesPath); in dumpStackTraces()
[all …]