Searched refs:shareDescription (Results 1 - 3 of 3) sorted by relevance
/frameworks/base/packages/Shell/src/com/android/shell/ |
H A D | BugreportProgressService.java | 819 final String shareDescription = intent.getStringExtra(EXTRA_DESCRIPTION); 820 if (!TextUtils.isEmpty(shareDescription)) { 821 info.shareDescription= shareDescription; 824 + " shareDescription is " + info.shareDescription); 1019 if (!TextUtils.isEmpty(info.shareDescription)) { 1020 if(!takingScreenshot) content = info.shareDescription; 1699 String shareDescription; field in class:BugreportProgressService.BugreportInfo 1802 .append("\n\tshareDescription: ").append(shareDescription) [all...] |
/frameworks/base/core/java/android/app/ |
H A D | IActivityManager.aidl | 360 * @param shareDescription should be less than 91 bytes when encoded into UTF-8 format 362 * @throws IllegalArgumentException if shareTitle or shareDescription is too big or if the 365 void requestTelephonyBugReport(in String shareTitle, in String shareDescription); 374 * @param shareDescription should be less than 91 bytes when encoded into UTF-8 format 376 * @throws IllegalArgumentException if shareTitle or shareDescription is too big or if the 379 void requestWifiBugReport(in String shareTitle, in String shareDescription);
|
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityManagerService.java | 13807 private void requestBugReportWithDescription(String shareTitle, String shareDescription, argument 13815 if (!TextUtils.isEmpty(shareDescription)) { 13818 length = shareDescription.getBytes("UTF-8").length; 13820 String errorStr = "shareDescription: UnsupportedEncodingException"; 13828 SystemProperties.set("dumpstate.options.description", shareDescription); 13836 + " description " + shareDescription); 13847 public void requestTelephonyBugReport(String shareTitle, String shareDescription) { argument 13848 requestBugReportWithDescription(shareTitle, shareDescription, 13859 public void requestWifiBugReport(String shareTitle, String shareDescription) { argument 13860 requestBugReportWithDescription(shareTitle, shareDescription, [all...] |
Completed in 76 milliseconds