Searched refs:exported (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DComponentInfo.java60 * Comes from {@link android.R.attr#exported android:exported} of the
64 public boolean exported = false; field in class:ComponentInfo
75 exported = orig.exported;
144 pw.println(prefix + "enabled=" + enabled + " exported=" + exported
167 dest.writeInt(exported ? 1 : 0);
176 exported = (source.readInt() != 0);
H A DPackageParser.java2978 a.info.exported = sa.getBoolean(
3148 if (a.info.exported && (flags & PARSE_IS_PRIVILEGED) == 0) {
3149 Slog.w(TAG, "Activity exported request ignored due to singleUser: "
3152 a.info.exported = false;
3244 a.info.exported = a.intents.size() > 0;
3338 a.info.exported = sa.getBoolean(
3410 a.info.exported = a.intents.size() > 0;
3449 // should have their content providers exported by default, unless they
3454 p.info.exported = sa.getBoolean(
3508 if (p.info.exported
[all...]
/frameworks/base/core/java/android/provider/
H A DSearchIndexablesProvider.java46 * android:exported="true"
90 if (!info.exported) {
91 throw new SecurityException("Provider must be exported");
H A DDocumentsProvider.java69 * android:exported="true"
160 if (!info.exported) {
161 throw new SecurityException("Provider must be exported");
/frameworks/base/services/core/java/com/android/server/am/
H A DServiceRecord.java74 final boolean exported; // from ServiceInfo.exported field in class:ServiceRecord
316 exported = sInfo.exported;
H A DBroadcastQueue.java754 info.activityInfo.exported);
756 if (!info.activityInfo.exported) {
761 + " is not exported from uid " + info.activityInfo.applicationInfo.uid
H A DActivityManagerService.java6809 int owningUid, boolean exported) {
6811 owningUid, exported);
6824 int owningUid, boolean exported) {
6829 owningUid, exported);
6918 } else if (!pi.exported) {
7157 boolean allowed = pi.exported;
8996 cpi.applicationInfo.uid, cpi.exported)
9001 cpi.applicationInfo.uid, cpi.exported)
9014 cpi.applicationInfo.uid, cpi.exported)
9020 cpi.applicationInfo.uid, cpi.exported)
6808 checkComponentPermission(String permission, int pid, int uid, int owningUid, boolean exported) argument
6823 checkComponentPermission(String permission, int pid, int uid, int owningUid, boolean exported) argument
[all...]
H A DActiveServices.java1087 callingPid, callingUid, r.appInfo.uid, r.exported)
1089 if (!r.exported) {
1093 + " that is not exported from uid " + r.appInfo.uid);
1094 return new ServiceLookupResult(null, "not exported from uid "
H A DActivityStackSupervisor.java1433 callingUid, aInfo.applicationInfo.uid, aInfo.exported);
1441 if (!aInfo.exported) {
1445 + " not exported from uid " + aInfo.applicationInfo.uid;
/frameworks/base/services/core/java/com/android/server/firewall/
H A DIntentFirewall.java582 int owningUid, boolean exported);
593 * @param exported Whether the component is exported
597 boolean exported) {
598 return mAms.checkComponentPermission(permission, pid, uid, owningUid, exported) ==
581 checkComponentPermission(String permission, int pid, int uid, int owningUid, boolean exported) argument
596 checkComponentPermission(String permission, int pid, int uid, int owningUid, boolean exported) argument
/frameworks/base/services/restrictions/java/com/android/server/restrictions/
H A DRestrictionsManagerService.java162 if (ri != null && ri.activityInfo != null && ri.activityInfo.exported) {
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java306 si.exported = true;
/frameworks/base/core/tests/inputmethodtests/src/android/os/
H A DInputMethodSubtypeSwitchingControllerTest.java66 si.exported = true;
H A DInputMethodTest.java231 si.exported = true;
/frameworks/base/services/core/java/com/android/server/pm/
H A DLauncherAppsService.java281 if (!info.exported) {
282 throw new SecurityException("Cannot launch non-exported components "
H A DPackageManagerService.java5328 mResolveActivity.exported = true;
6502 mResolveActivity.exported = true;
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java87 * <code>com.mydomain.fileprovider</code>. Set the <code>android:exported</code> attribute to
100 * android:exported="false"
203 * android:exported="false"
345 if (info.exported) {
346 throw new SecurityException("Provider must not be exported");
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java717 activityInfo.exported) == PackageManager.PERMISSION_GRANTED) {
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DSelectPrinterActivity.java294 if (activityInfo.exported
H A DPrintActivity.java676 if (resolvedActivities.get(0).activityInfo.exported) {
/frameworks/base/core/java/android/app/
H A DActivityManager.java2470 int owningUid, boolean exported) {
2484 // If the target is not exported, then nobody else can get to it.
2485 if (!exported) {
2469 checkComponentPermission(String permission, int uid, int owningUid, boolean exported) argument
/frameworks/base/core/java/android/content/
H A DContentProvider.java538 : " requires the provider be exported, or grantUriPermission()";
603 : " requires the provider be exported, or grantUriPermission()";
980 * write permissions, or is not exported, all applications can still call
1692 mExported = info.exported;
/frameworks/base/tools/aapt/
H A DCommand.cpp1565 bool exported = AaptXml::getResolvedIntegerAttribute(res, tree, local
1568 fprintf(stderr, "ERROR getting 'android:exported' attribute for provider:"
1589 hasRequiredSafAttributes |= exported && grantUriPermissions &&
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java861 ai.applicationInfo.uid, ai.exported);

Completed in 725 milliseconds