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

/frameworks/base/services/java/com/android/server/
H A DWatchdog.java483 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
484 if (tracesPath == null || tracesPath.length() == 0) {
488 native_dumpKernelStacks(tracesPath);
489 return new File(tracesPath);
492 private native void native_dumpKernelStacks(String tracesPath); argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java3072 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
3073 if (tracesPath == null || tracesPath.length() == 0) {
3077 File tracesFile = new File(tracesPath);
3092 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e);
3096 dumpStackTraces(tracesPath, firstPids, processStats, lastPids, nativeProcs);
3100 private static void dumpStackTraces(String tracesPath, ArrayList<Integer> firstPids, argument
3104 FileObserver observer = new FileObserver(tracesPath, FileObserver.CLOSE_WRITE) {
3167 Debug.dumpNativeBacktraceToFile(pid, tracesPath);
3177 String tracesPath
[all...]

Completed in 54 milliseconds