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

/frameworks/base/services/core/java/com/android/server/
H A DWatchdog.java516 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
517 if (tracesPath == null || tracesPath.length() == 0) {
521 native_dumpKernelStacks(tracesPath);
522 return new File(tracesPath);
525 private native void native_dumpKernelStacks(String tracesPath); argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java5272 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
5273 if (tracesPath == null || tracesPath.length() == 0) {
5277 File tracesFile = new File(tracesPath);
5283 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e);
5287 dumpStackTraces(tracesPath, firstPids, processCpuTracker, lastPids, nativeProcs);
5291 private static void dumpStackTraces(String tracesPath, ArrayList<Integer> firstPids, argument
5295 FileObserver observer = new FileObserver(tracesPath, FileObserver.CLOSE_WRITE) {
5330 Debug.dumpNativeBacktraceToFile(pid, tracesPath);
5385 String tracesPath
[all...]

Completed in 169 milliseconds