Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/
DWatchdog.java509 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null); in dumpKernelStackTraces() local
510 if (tracesPath == null || tracesPath.length() == 0) { in dumpKernelStackTraces()
514 native_dumpKernelStacks(tracesPath); in dumpKernelStackTraces()
515 return new File(tracesPath); in dumpKernelStackTraces()
518 private native void native_dumpKernelStacks(String tracesPath); in native_dumpKernelStacks() argument
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java4711 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null); in dumpStackTraces() local
4712 if (tracesPath == null || tracesPath.length() == 0) { in dumpStackTraces()
4716 File tracesFile = new File(tracesPath); in dumpStackTraces()
4731 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e); in dumpStackTraces()
4735 dumpStackTraces(tracesPath, firstPids, processCpuTracker, lastPids, nativeProcs); in dumpStackTraces()
4739 private static void dumpStackTraces(String tracesPath, ArrayList<Integer> firstPids, in dumpStackTraces() argument
4743 FileObserver observer = new FileObserver(tracesPath, FileObserver.CLOSE_WRITE) { in dumpStackTraces()
4771 Debug.dumpNativeBacktraceToFile(pid, tracesPath); in dumpStackTraces()
4817 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null); in logAppTooSlow() local
4818 if (tracesPath == null || tracesPath.length() == 0) { in logAppTooSlow()
[all …]