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