Searched refs:bugreportId (Results 1 – 3 of 3) sorted by relevance
363 private void addAudioToExistingBugReport(int bugreportId) { in addAudioToExistingBugReport() argument364 MetaBugReport bug = BugStorageUtils.findBugReport(this, bugreportId).orElseThrow( in addAudioToExistingBugReport()365 () -> new RuntimeException("Failed to find bug report with id " + bugreportId)); in addAudioToExistingBugReport()
401 int bugreportId = Integer.parseInt(uri.getLastPathSegment()); in getBugReportFromUri() local402 return BugStorageUtils.findBugReport(getContext(), bugreportId) in getBugReportFromUri()
190 static Optional<MetaBugReport> findBugReport(Context context, int bugreportId) { in findBugReport() argument192 String[] selectionArgs = new String[]{Integer.toString(bugreportId)}; in findBugReport()