Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/am/
DAppErrors.java911 File tracesFile = mService.dumpStackTraces(true, firstPids, in appNotResponding() local
929 if (tracesFile == null) { in appNotResponding()
935 cpuInfo, tracesFile, null); in appNotResponding()
DActivityManagerService.java5468 File tracesFile = new File(tracesPath); in dumpStackTraces() local
5470 if (clearTraces && tracesFile.exists()) tracesFile.delete(); in dumpStackTraces()
5471 tracesFile.createNewFile(); in dumpStackTraces()
5472 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw- in dumpStackTraces()
5479 return tracesFile; in dumpStackTraces()
5654 final File tracesFile = new File(tracesPath); in logAppTooSlow() local
5655 final File tracesDir = tracesFile.getParentFile(); in logAppTooSlow()
5658 if (tracesFile.exists()) { in logAppTooSlow()
5660 tracesFile.renameTo(tracesTmp); in logAppTooSlow()
5670 FileOutputStream fos = new FileOutputStream(tracesFile); in logAppTooSlow()
[all …]