Searched refs:handlerApp (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Settings/src/com/android/settings/bugreporthandler/ |
D | BugReportHandlerUtil.java | 75 String handlerApp = getCustomBugReportHandlerApp(context); in getCurrentBugReportHandlerAppAndUser() local 79 if (!isBugreportAllowlistedApp(handlerApp)) { in getCurrentBugReportHandlerAppAndUser() 80 handlerApp = getDefaultBugReportHandlerApp(context); in getCurrentBugReportHandlerAppAndUser() 82 } else if (getBugReportHandlerAppReceivers(context, handlerApp, handlerUser).isEmpty()) { in getCurrentBugReportHandlerAppAndUser() 91 handlerApp = getDefaultBugReportHandlerApp(context); in getCurrentBugReportHandlerAppAndUser() 96 if (!isBugreportAllowlistedApp(handlerApp) in getCurrentBugReportHandlerAppAndUser() 97 || getBugReportHandlerAppReceivers(context, handlerApp, handlerUser).isEmpty()) { in getCurrentBugReportHandlerAppAndUser() 101 handlerApp = SHELL_APP_PACKAGE; in getCurrentBugReportHandlerAppAndUser() 107 setBugreportHandlerAppAndUser(context, handlerApp, handlerUser); in getCurrentBugReportHandlerAppAndUser() 110 return Pair.create(handlerApp, handlerUser); in getCurrentBugReportHandlerAppAndUser() [all …]
|
D | BugReportHandlerPicker.java | 60 String handlerApp = key.substring(0, index); in getHandlerApp() local 61 return handlerApp; in getHandlerApp() 76 static String getKey(String handlerApp, int handlerUser) { in getKey() argument 77 return handlerApp + "#" + handlerUser; in getKey() 185 private String getDescription(String handlerApp, int handlerUser) { in getDescription() argument 187 if (BugReportHandlerUtil.SHELL_APP_PACKAGE.equals(handlerApp)) { in getDescription()
|
/packages/apps/Settings/src/com/android/settings/development/ |
D | BugReportHandlerPreferenceController.java | 73 final String handlerApp = mBugReportHandlerUtil.getCurrentBugReportHandlerAppAndUser( in getCurrentBugReportHandlerAppLabel() local 75 if (BugReportHandlerUtil.SHELL_APP_PACKAGE.equals(handlerApp)) { in getCurrentBugReportHandlerAppLabel() 80 applicationInfo = mContext.getPackageManager().getApplicationInfo(handlerApp, in getCurrentBugReportHandlerAppLabel()
|