Searched defs:tracesPath (Results 1 - 2 of 2) sorted by relevance

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

Completed in 319 milliseconds