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

/frameworks/base/services/java/com/android/server/
H A DWatchdog.java471 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
472 if (tracesPath == null || tracesPath.length() == 0) {
476 native_dumpKernelStacks(tracesPath);
477 return new File(tracesPath);
480 private native void native_dumpKernelStacks(String tracesPath); argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java3073 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
3074 if (tracesPath == null || tracesPath.length() == 0) {
3078 File tracesFile = new File(tracesPath);
3093 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e);
3097 dumpStackTraces(tracesPath, firstPids, processStats, lastPids, nativeProcs);
3101 private static void dumpStackTraces(String tracesPath, ArrayList<Integer> firstPids, argument
3105 FileObserver observer = new FileObserver(tracesPath, FileObserver.CLOSE_WRITE) {
3168 Debug.dumpNativeBacktraceToFile(pid, tracesPath);
3178 String tracesPath
[all...]

Completed in 571 milliseconds