Searched refs:bugreportFile (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportReceiver.java69 final File bugreportFile = getFileExtra(intent, EXTRA_BUGREPORT);
70 if (bugreportFile == null || !bugreportFile.exists()) {
71 Log.e(TAG, "Not deleting old files because file " + bugreportFile + " doesn't exist");
79 FileUtils.deleteOlderFiles(bugreportFile.getParentFile(), minCount, minAge);
H A DRemoteBugreportReceiver.java56 final File bugreportFile = getFileExtra(intent, EXTRA_BUGREPORT);
57 final Uri bugreportUri = getUri(context, bugreportFile);
H A DBugreportProgressService.java788 final File bugreportFile = getFileExtra(intent, EXTRA_BUGREPORT);
789 if (bugreportFile == null) {
803 info.bugreportFile = bugreportFile;
841 if (!info.bugreportFile.exists() || !info.bugreportFile.canRead()) {
842 Log.e(TAG, "Could not read bugreport file " + info.bugreportFile);
848 boolean isPlainText = info.bugreportFile.getName().toLowerCase().endsWith(".txt");
872 bugreportUri = getUri(context, info.bugreportFile);
876 Log.wtf(TAG, "Could not get URI for " + info.bugreportFile,
1673 File bugreportFile; field in class:BugreportProgressService.BugreportInfo
[all...]

Completed in 112 milliseconds