Home
last modified time | relevance | path

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

/packages/services/Car/tests/BugReportApp/tests/src/com/google/android/car/bugreport/
DBugStorageUtilsTest.java61 assertThat(BugStorageUtils.findBugReport(mContext, bug.getId()).get()).isEqualTo(bug); in test_createBugReport_createsAndReturnsMetaBugReport()
76 assertThat(BugStorageUtils.findBugReport(mContext, bug.getId()).get()) in test_expireBugReport_marksBugReportDeletedAndDeletesZip()
95 assertThat(BugStorageUtils.findBugReport(mContext, bug.getId()).isPresent()).isFalse(); in test_completeDeleteBugReport_removesBugReportRecordFromDb()
/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
DBugStorageUtils.java96 return findBugReport(context, Integer.parseInt(uri.getLastPathSegment())).get(); in createBugReport()
190 static Optional<MetaBugReport> findBugReport(Context context, int bugreportId) { in findBugReport() method in BugStorageUtils
369 return findBugReport(context, bugReport.getId()).orElseThrow( in update()
DBugStorageProvider.java408 return BugStorageUtils.findBugReport(getContext(), bugreportId) in getBugReportFromUri()
DBugReportActivity.java363 MetaBugReport bug = BugStorageUtils.findBugReport(this, bugreportId).orElseThrow( in addAudioToExistingBugReport()