Searched defs:providers (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsHelper.java17 package com.android.providers.settings;
H A DDatabaseHelper.java17 package com.android.providers.settings;
H A DSettingsBackupAgent.java17 package com.android.providers.settings;
H A DSettingsProvider.java17 package com.android.providers.settings;
718 // If the request if for location providers and there's a restriction, return none
998 * This setting contains a list of the currently enabled location providers.
999 * But helper functions in android.providers.Settings can enable or disable
1014 // read list of enabled providers into "providers"
1015 String providers = "";
1022 providers = cursor.getString(0);
1028 int index = providers.indexOf(value);
1031 if (index > 0 && providers
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java136 public ProviderInfo[] providers; field in class:PackageInfo
310 dest.writeTypedArray(providers, parcelableFlags);
359 providers = source.createTypedArray(ProviderInfo.CREATOR);
H A DPackageParser.java525 int N = p.providers.size();
528 pi.providers = new ProviderInfo[N];
532 if (p.providers.get(i).info.enabled) num++;
534 pi.providers = new ProviderInfo[num];
537 final Provider provider = p.providers.get(i);
540 pi.providers[j++] = generateProviderInfo(p.providers.get(i), flags,
2675 owner.providers.add(p);
2828 owner.providers.add(p);
3449 // should have their content providers exporte
4224 public final ArrayList<Provider> providers = new ArrayList<Provider>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProviderMap.java36 * Keeps track of content providers by authority (name) and class. It separates the mapping by
37 * user and ones that are not user-specific (system providers).
189 HashMap<ComponentName, ContentProviderRecord> providers,
192 for (ContentProviderRecord provider : providers.values()) {
292 " Published single-user content providers (by class):", needSep,
300 + " content providers (by class):", needSep, map);
320 ArrayList<ContentProviderRecord> providers = new ArrayList<ContentProviderRecord>();
329 providers.addAll(allProviders);
348 providers.add(r1);
352 providers
187 collectForceStopProvidersLocked(String name, int appId, boolean doit, boolean evenPersistent, int userId, HashMap<ComponentName, ContentProviderRecord> providers, ArrayList<ContentProviderRecord> result) argument
[all...]
H A DActivityManagerService.java794 * List of content providers who have clients waiting for them. The
5678 ArrayList<ContentProviderRecord> providers = new ArrayList<ContentProviderRecord>();
5680 userId, providers)) {
5686 N = providers.size();
5688 removeDyingProviderLocked(null, providers.get(i), true);
5832 // Take care of any launching providers waiting for this process.
5926 List<ProviderInfo> providers = normalMode ? generateApplicationProvidersLocked(app) : null;
5988 thread.bindApplication(processName, appInfo, providers, app.instrumentationClass,
8913 List<ProviderInfo> providers = null;
8915 providers
9592 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java273 List<ProviderInfo> providers =
293 bindApplication(packageName, info, providers, testName, profilerInfo, testArgs,
956 List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo,
966 data.writeTypedList(providers);
955 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, Bundle testArgs, IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DIApplicationThread.java96 void bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, argument
H A DActivityManagerNative.java833 ArrayList<ContentProviderHolder> providers =
835 publishContentProviders(app, providers);
3344 List<ContentProviderHolder> providers) throws RemoteException
3350 data.writeTypedList(providers);
3343 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
H A DActivityThread.java440 List<ProviderInfo> providers; field in class:ActivityThread.AppBindData
756 List<ProviderInfo> providers, ComponentName instrumentationName,
811 data.providers = providers;
4529 // don't bring up providers in restricted mode; they may depend on the
4532 List<ProviderInfo> providers = data.providers;
4533 if (providers != null) {
4534 installContentProviders(app, providers);
4535 // For process that contains content providers, w
755 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, ProfilerInfo profilerInfo, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, IUiAutomationConnection instrumentationUiConnection, int debugMode, boolean enableOpenGlTrace, boolean isRestrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
4580 installContentProviders( Context context, List<ProviderInfo> providers) argument
5178 installSystemProviders(List<ProviderInfo> providers) argument
[all...]
H A DIActivityManager.java151 List<ContentProviderHolder> providers) throws RemoteException;
150 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java169 // Set of providers that are explicitly enabled
172 // Set of providers that are explicitly disabled
175 // Mock (test) providers
182 // currently installed providers (with mocks replacing real providers)
186 // real providers, saved here when mocked out
208 // all providers that operate over proxy, for authorizing incoming location
262 // prepare providers
421 These packages can contain services implementing location providers:
424 service components implementing these providers
1231 pickBest(List<String> providers) argument
[all...]

Completed in 5337 milliseconds