Searched refs:findBugReport (Results 1 – 5 of 5) sorted by relevance
/packages/services/Car/tests/BugReportApp/tests/src/com/android/car/bugreport/ |
D | BugStorageUtilsTest.java | 75 assertThat(BugStorageUtils.findBugReport(mContext, bug.getId()).get()).isEqualTo(bug); in test_createBugReport_createsAndReturnsMetaBugReport() 94 MetaBugReport updatedBug = BugStorageUtils.findBugReport(mContext, bug.getId()).get(); in test_expireBugReport_marksBugReportDeletedAndDeletesZip() 126 assertThat(BugStorageUtils.findBugReport(mContext, bug.getId()).isPresent()).isFalse(); in test_completeDeleteBugReport_removesBugReportRecordFromDb() 198 return BugStorageUtils.findBugReport(mContext, in createBugReport()
|
D | TtlPointsDecrementalTest.java | 97 return BugStorageUtils.findBugReport(mContext, bug.getId()).get(); in find() 113 return BugStorageUtils.findBugReport(mContext, in createBugReport()
|
/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/ |
D | BugStorageUtils.java | 111 return findBugReport(context, Integer.parseInt(uri.getLastPathSegment())).get(); in createBugReport() 245 static Optional<MetaBugReport> findBugReport(Context context, int bugreportId) { in findBugReport() method in BugStorageUtils 410 return findBugReport(context, bugReport.getId()).orElseThrow( in update()
|
D | BugStorageProvider.java | 446 return BugStorageUtils.findBugReport(getContext(), bugreportId) in getBugReportFromUri()
|
D | BugReportActivity.java | 363 MetaBugReport bug = BugStorageUtils.findBugReport(this, bugreportId).orElseThrow( in addAudioToExistingBugReport()
|