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

/frameworks/base/services/core/java/com/android/server/
H A DWatchdog.java509 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
510 if (tracesPath == null || tracesPath.length() == 0) {
514 native_dumpKernelStacks(tracesPath);
515 return new File(tracesPath);
518 private native void native_dumpKernelStacks(String tracesPath); argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java4761 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
4762 if (tracesPath == null || tracesPath.length() == 0) {
4766 File tracesFile = new File(tracesPath);
4781 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e);
4785 dumpStackTraces(tracesPath, firstPids, processCpuTracker, lastPids, nativeProcs);
4789 private static void dumpStackTraces(String tracesPath, ArrayList<Integer> firstPids, argument
4793 FileObserver observer = new FileObserver(tracesPath, FileObserver.CLOSE_WRITE) {
4821 Debug.dumpNativeBacktraceToFile(pid, tracesPath);
4867 String tracesPath
[all...]

Completed in 147 milliseconds