Home
last modified time | relevance | path

Searched refs:bugreportId (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
DBugReportActivity.java362 private void addAudioToExistingBugReport(int bugreportId) { in addAudioToExistingBugReport() argument
363 MetaBugReport bug = BugStorageUtils.findBugReport(this, bugreportId).orElseThrow( in addAudioToExistingBugReport()
364 () -> new RuntimeException("Failed to find bug report with id " + bugreportId)); in addAudioToExistingBugReport()
DBugStorageUtils.java190 static Optional<MetaBugReport> findBugReport(Context context, int bugreportId) { in findBugReport() argument
192 String[] selectionArgs = new String[]{Integer.toString(bugreportId)}; in findBugReport()
DBugStorageProvider.java407 int bugreportId = Integer.parseInt(uri.getLastPathSegment()); in getBugReportFromUri() local
408 return BugStorageUtils.findBugReport(getContext(), bugreportId) in getBugReportFromUri()