Home
last modified time | relevance | path

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

/packages/services/Car/tests/BugReportApp/tests/src/com/android/car/bugreport/
DBugStorageUtilsTest.java164 List<MetaBugReport> bugReports = BugStorageUtils.getUnexpiredBugReportsWithZipFile( in test_getUnexpiredBugReportsWithZipFile_withNonZeroTtlPoints() local
167 assertThat(bugReports).containsExactly(bugUserPending, bugUserPendingTtlPoints1, in test_getUnexpiredBugReportsWithZipFile_withNonZeroTtlPoints()
193 List<MetaBugReport> bugReports = BugStorageUtils.getUnexpiredBugReportsWithZipFile( in test_getUnexpiredBugReportsWithZipFile_withZeroTtlPoints() local
196 assertThat(bugReports).containsExactly(bugUserPendingTtlPoints0, in test_getUnexpiredBugReportsWithZipFile_withZeroTtlPoints()
/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
DBugInfoAdapter.java212 void setDataset(List<MetaBugReport> bugReports) { in setDataset() argument
213 mDataset = new ArrayList<>(bugReports); in setDataset()
DBugStorageUtils.java261 ArrayList<MetaBugReport> bugReports = new ArrayList<>(); in getBugreports() local
295 bugReports.add(meta); in getBugreports()
299 return bugReports; in getBugreports()
DSimpleUploaderAsyncTask.java202 List<MetaBugReport> bugReports = BugStorageUtils.getUploadPendingBugReports(mContext); in doInBackground() local
205 for (MetaBugReport bugReport : bugReports) { in doInBackground()