Searched defs:providers (Results 26 - 29 of 29) sorted by relevance

12

/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java188 // Set of providers that are explicitly enabled
192 // Set of providers that are explicitly disabled
195 // Mock (test) providers
202 // currently installed providers (with mocks replacing real providers)
206 // real providers, saved here when mocked out
228 // all providers that operate over proxy, for authorizing incoming location and whitelisting
259 // providers as they get certain permissions granted by default.
345 // prepare providers
615 These packages can contain services implementing location providers
1641 pickBest(List<String> providers) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityThread.java630 List<ProviderInfo> providers; field in class:ActivityThread.AppBindData
859 List<ProviderInfo> providers, ComponentName instrumentationName,
899 data.providers = providers;
5849 // don't bring up providers in restricted mode; they may depend on the
5852 if (!ArrayUtils.isEmpty(data.providers)) {
5853 installContentProviders(app, data.providers);
5854 // For process that contains content providers, we want to
5860 // Do this after providers, since instrumentation tests generally start their
5926 Context context, List<ProviderInfo> providers) {
858 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, ProfilerInfo profilerInfo, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, IUiAutomationConnection instrumentationUiConnection, int debugMode, boolean enableBinderTracking, boolean trackAllocation, boolean isRestrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map services, Bundle coreSettings, String buildSerial, boolean autofillCompatibilityEnabled) argument
5925 installContentProviders( Context context, List<ProviderInfo> providers) argument
6576 installSystemProviders(List<ProviderInfo> providers) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java750 final int N = p.providers.size();
755 final Provider pr = p.providers.get(i);
760 pi.providers = ArrayUtils.trimToSize(res, num);
3669 owner.providers.add(p);
3943 owner.providers.add(p);
4818 // should have their content providers exported by default, unless they
4901 // A heavy-weight application can not have providers in its main process
4904 outError[0] = "Heavy-weight applications can not have providers in main process";
6244 public final ArrayList<Provider> providers = new ArrayList<Provider>(0); field in class:PackageParser.Package
6585 for (int i=providers
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java580 // How long we wait for an attached process to publish its content providers
1186 * List of content providers who have clients waiting for them. The
7218 // Clean-up disabled providers.
7219 ArrayList<ContentProviderRecord> providers = new ArrayList<>();
7221 packageName, disabledClasses, true, false, userId, providers);
7222 for (int i = providers.size() - 1; i >= 0; i--) {
7223 removeDyingProviderLocked(null, providers.get(i), true);
7299 ArrayList<ContentProviderRecord> providers = new ArrayList<>();
7301 userId, providers)) {
7307 for (i = providers
12667 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
[all...]

Completed in 117 milliseconds

12