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);
797 if (bugreportFile == null) {
811 info.bugreportFile = bugreportFile;
849 if (!info.bugreportFile.exists() || !info.bugreportFile.canRead()) {
850 Log.e(TAG, "Could not read bugreport file " + info.bugreportFile);
856 boolean isPlainText = info.bugreportFile.getName().toLowerCase().endsWith(".txt");
880 bugreportUri = getUri(context, info.bugreportFile);
884 Log.wtf(TAG, "Could not get URI for " + info.bugreportFile,
1682 File bugreportFile; field in class:BugreportProgressService.BugreportInfo
[all...]

Completed in 199 milliseconds