Home
last modified time | relevance | path

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

/aosp12/packages/apps/Launcher3/src/com/android/launcher3/logging/
H A DFileLog.java163 File logFile = new File(sLogsDirectory, fileName); in handleMessage() local
164 if (logFile.exists()) { in handleMessage()
166 modifiedTime.setTimeInMillis(logFile.lastModified()); in handleMessage()
172 && logFile.length() < MAX_LOG_FILE_SIZE; in handleMessage()
174 mCurrentWriter = new PrintWriter(new FileWriter(logFile, append)); in handleMessage()
213 File logFile = new File(sLogsDirectory, fileName);
214 if (logFile.exists()) {
218 in = new BufferedReader(new FileReader(logFile));
/aosp12/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DLogFileListener.java49 private String logFile; field in LogFileListener
51 public LogFileListener(String logFile) { in LogFileListener() argument
52 this.logFile = logFile; in LogFileListener()
58 writer = new BufferedWriter(new FileWriter(logFile)); in setup()
72 Log.always("Full log in " + logFile); in shutdown()
H A DBisectionSearchListener.java81 String logFile = String.format("bisection_outputs/%d_log.txt", currentSeed); in handleDivergences() local
96 expected_output_file.getAbsolutePath(), logFile); in handleDivergences()
/aosp12/packages/apps/Test/connectivity/PMC/src/com/android/pmc/
H A DIperfClient.java47 String serverPort, String bandWidthInMbps, String logFile) { in IperfClient() argument
72 if (logFile != null && logFile.length() > 0) { in IperfClient()
73 mLogFile = new File(logFile); in IperfClient()
/aosp12/build/blueprint/bootstrap/
H A Dcleanup.go85 logFile, err := os.Open(logFilePath)
92 defer logFile.Close()
94 scanner := bufio.NewScanner(logFile)
/aosp12/frameworks/base/packages/BackupEncryption/src/com/android/server/backup/encryption/keys/
H A DTertiaryKeyRotationWindowedCount.java57 File logFile = new File(context.getFilesDir(), LOG_FILE_NAME); in getInstance() local
58 return new TertiaryKeyRotationWindowedCount(logFile, Clock.systemDefaultZone()); in getInstance()
/aosp12/frameworks/base/core/java/com/android/internal/protolog/
H A DProtoLogImpl.java107 public ProtoLogImpl(File logFile, int bufferCapacity, in ProtoLogImpl() argument
109 super(logFile, VIEWER_CONFIG_FILENAME, bufferCapacity, viewConfigReader); in ProtoLogImpl()
/aosp12/packages/apps/Messaging/src/com/android/messaging/util/
H A DLogSaver.java232 final File logFile = new File(logFilePath); in dump() local
233 if (!logFile.exists()) { in dump()
236 final BufferedReader reader = new BufferedReader(new FileReader(logFile)); in dump()
/aosp12/art/tools/dexfuzz/src/dexfuzz/executors/
H A DExecutor.java192 …ExecutionResult runBisectionSearch(String programName, String expectedOutputFile, String logFile) { in runBisectionSearch() argument
198 commandBuilder.append(" --logfile=").append(logFile); in runBisectionSearch()
/aosp12/packages/modules/Permission/PermissionController/tests/mocking/src/com/android/permissioncontroller/hibernation/
H A DHibernationControllerTest.kt101 val logFile = File(filesDir, Constants.LOGS_TO_DUMP_FILE) regex
102 logFile.delete()
/aosp12/frameworks/base/services/incremental/test/
H A DIncrementalServiceTest.cpp122 TemporaryFile logFile; member in android::os::incremental::MockVoldService