Home
last modified time | relevance | path

Searched refs:triggerShellBugreport (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java6622 Intent triggerShellBugreport = new Intent(); in requestBugReportWithDescription() local
6623 triggerShellBugreport.setAction(INTENT_BUGREPORT_REQUESTED); in requestBugReportWithDescription()
6624 triggerShellBugreport.setPackage(SHELL_APP_PACKAGE); in requestBugReportWithDescription()
6625 triggerShellBugreport.putExtra(EXTRA_BUGREPORT_TYPE, bugreportType); in requestBugReportWithDescription()
6626 triggerShellBugreport.addFlags(Intent.FLAG_RECEIVER_FOREGROUND); in requestBugReportWithDescription()
6627 triggerShellBugreport.addFlags(Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND); in requestBugReportWithDescription()
6629 triggerShellBugreport.putExtra(EXTRA_TITLE, shareTitle); in requestBugReportWithDescription()
6632 triggerShellBugreport.putExtra(EXTRA_DESCRIPTION, shareDescription); in requestBugReportWithDescription()
6637 mContext.sendBroadcastAsUser(triggerShellBugreport, UserHandle.SYSTEM); in requestBugReportWithDescription()