Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/tests/BugReportApp/tests/src/com/android/car/bugreport/
H A DBugStorageUtilsTest.java151 List<MetaBugReport> bugReports = BugStorageUtils.getUnexpiredBugReportsWithZipFile( in test_getUnexpiredBugReportsWithZipFile_withNonZeroTtlPoints() local
154 assertThat(bugReports).containsExactly(bugUserPending, bugUserPending_ttl_points1, in test_getUnexpiredBugReportsWithZipFile_withNonZeroTtlPoints()
176 List<MetaBugReport> bugReports = BugStorageUtils.getUnexpiredBugReportsWithZipFile( in test_getUnexpiredBugReportsWithZipFile_withZeroTtlPoints() local
179 assertThat(bugReports).containsExactly(bugUserPending_ttl_points0, in test_getUnexpiredBugReportsWithZipFile_withZeroTtlPoints()
/aosp12/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
H A DBugInfoAdapter.java175 void setDataset(List<MetaBugReport> bugReports) { in setDataset() argument
176 mDataset = new ArrayList<>(bugReports); in setDataset()
H A DSimpleUploaderAsyncTask.java183 List<MetaBugReport> bugReports = BugStorageUtils.getUploadPendingBugReports(mContext); in doInBackground() local
185 for (MetaBugReport bugReport : bugReports) { in doInBackground()
H A DBugStorageUtils.java258 ArrayList<MetaBugReport> bugReports = new ArrayList<>(); in getBugreports() local
292 bugReports.add(meta); in getBugreports()
296 return bugReports; in getBugreports()