Home
last modified time | relevance | path

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

/frameworks/base/services/java/com/android/server/
DWatchdog.java481 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null); in dumpKernelStackTraces() local
482 if (tracesPath == null || tracesPath.length() == 0) { in dumpKernelStackTraces()
486 native_dumpKernelStacks(tracesPath); in dumpKernelStackTraces()
487 return new File(tracesPath); in dumpKernelStackTraces()
490 private native void native_dumpKernelStacks(String tracesPath); in native_dumpKernelStacks() argument
/frameworks/base/services/java/com/android/server/am/
DActivityManagerService.java3782 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null); in dumpStackTraces() local
3783 if (tracesPath == null || tracesPath.length() == 0) { in dumpStackTraces()
3787 File tracesFile = new File(tracesPath); in dumpStackTraces()
3802 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e); in dumpStackTraces()
3806 dumpStackTraces(tracesPath, firstPids, processCpuTracker, lastPids, nativeProcs); in dumpStackTraces()
3810 private static void dumpStackTraces(String tracesPath, ArrayList<Integer> firstPids, in dumpStackTraces() argument
3814 FileObserver observer = new FileObserver(tracesPath, FileObserver.CLOSE_WRITE) { in dumpStackTraces()
3842 Debug.dumpNativeBacktraceToFile(pid, tracesPath); in dumpStackTraces()
3888 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null); in logAppTooSlow() local
3889 if (tracesPath == null || tracesPath.length() == 0) { in logAppTooSlow()
[all …]