Searched defs:bugreportUri (Results 1 - 1 of 1) sorted by relevance

/system/extras/bugmailer/src/com/android/commands/sendbug/
H A DSendBug.java63 final Uri bugreportUri = Uri.fromFile(bugreport);
65 Intent intent = tryBugReporter(bugreportUri);
69 intent = getSendMailIntent(bugreportUri, screenshotUri);
89 private Intent tryBugReporter(Uri bugreportUri) { argument
91 intent.setData(bugreportUri);
115 private Intent getSendMailIntent(Uri bugreportUri, Uri screenshotUri) { argument
120 intent.putExtra(Intent.EXTRA_SUBJECT, bugreportUri.getLastPathSegment());
127 attachments.add(bugreportUri);
132 intent.putExtra(Intent.EXTRA_STREAM, bugreportUri);

Completed in 24 milliseconds