Home
last modified time | relevance | path

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

/aosp14/frameworks/base/cmds/incident_helper/java/com/android/commands/incident/sections/
H A DPersistLogSection.java93 Path logDirPath = Paths.get(LOG_DIR); in run() local
94 if (!Files.exists(logDirPath)) { in run()
95 IncidentHelper.log(Log.WARN, TAG, "Skip dump. " + logDirPath + " does not exist."); in run()
98 if (!Files.isReadable(logDirPath)) { in run()
99 IncidentHelper.log(Log.WARN, TAG, "Skip dump. " + logDirPath + " is not readable."); in run()
107 try (Stream<File> stream = Files.list(logDirPath).map(Path::toFile) in run()