Home | History | Annotate | Download | only in am

Lines Matching refs:tracesPath

3148         String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
3149 if (tracesPath == null || tracesPath.length() == 0) {
3153 File tracesFile = new File(tracesPath);
3168 Slog.w(TAG, "Unable to prepare ANR traces file: " + tracesPath, e);
3172 dumpStackTraces(tracesPath, firstPids, processStats, lastPids, nativeProcs);
3176 private static void dumpStackTraces(String tracesPath, ArrayList<Integer> firstPids,
3180 FileObserver observer = new FileObserver(tracesPath, FileObserver.CLOSE_WRITE) {
3243 Debug.dumpNativeBacktraceToFile(pid, tracesPath);
3253 String tracesPath = SystemProperties.get("dalvik.vm.stack-trace-file", null);
3254 if (tracesPath == null || tracesPath.length() == 0) {
3261 final File tracesFile = new File(tracesPath);
3293 Slog.w(TAG, "Unable to prepare slow app traces file: " + tracesPath, e);
3300 dumpStackTraces(tracesPath, firstPids, null, null, null);