Searched refs:shareTitle (Results 1 - 3 of 3) sorted by relevance
/frameworks/base/packages/Shell/src/com/android/shell/ |
H A D | BugreportProgressService.java | 816 final String shareTitle = intent.getStringExtra(EXTRA_TITLE); 817 if (!TextUtils.isEmpty(shareTitle)) { 818 info.title = shareTitle;
|
/frameworks/base/core/java/android/app/ |
H A D | IActivityManager.aidl | 359 * @param shareTitle should be a valid legible string less than 50 chars long 362 * @throws IllegalArgumentException if shareTitle or shareDescription is too big or if the 365 void requestTelephonyBugReport(in String shareTitle, in String shareDescription); 373 * @param shareTitle should be a valid legible string less than 50 chars long 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 13809 if (!TextUtils.isEmpty(shareTitle)) { 13810 if (shareTitle.length() > MAX_BUGREPORT_TITLE_SIZE) { 13811 String errorStr = "shareTitle should be less than " + 13824 String errorStr = "shareTitle should be less than " + 13831 SystemProperties.set("dumpstate.options.title", shareTitle); 13835 Slog.d(TAG, "Bugreport notification title " + shareTitle 13847 public void requestTelephonyBugReport(String shareTitle, String shareDescription) { argument 13848 requestBugReportWithDescription(shareTitle, shareDescription, 13859 public void requestWifiBugReport(String shareTitle, Strin argument [all...] |
Completed in 56 milliseconds