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

/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java115 public ProviderInfo[] providers; field in class:PackageInfo
228 dest.writeTypedArray(providers, parcelableFlags);
265 providers = source.createTypedArray(ProviderInfo.CREATOR);
H A DPackageParser.java301 int N = p.providers.size();
304 pi.providers = new ProviderInfo[N];
308 if (p.providers.get(i).info.enabled) num++;
310 pi.providers = new ProviderInfo[num];
313 final Provider provider = p.providers.get(i);
316 pi.providers[j++] = generateProviderInfo(p.providers.get(i), flags);
1778 owner.providers.add(p);
2331 // A heavy-weight application can not have providers in its main process
2334 outError[0] = "Heavy-weight applications can not have providers i
2937 public final ArrayList<Provider> providers = new ArrayList<Provider>(0); field in class:PackageParser.Package
[all...]
/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;
470 * This setting contains a list of the currently enabled location providers.
471 * But helper functions in android.providers.Settings can enable or disable
486 // read list of enabled providers into "providers"
487 String providers = "";
494 providers = cursor.getString(0);
500 int index = providers.indexOf(value);
503 if (index > 0 && providers.charAt(index - 1) != ',') index = -1;
504 if (end < providers
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java258 List<ProviderInfo> providers =
277 providers, testName, profileName, profileFd, autoStopProfiler,
815 List<ProviderInfo> providers, ComponentName testName, String profileName,
824 data.writeTypedList(providers);
814 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler, Bundle testArgs, IInstrumentationWatcher testWatcher, int debugMode, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DIApplicationThread.java89 void bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, argument
H A DActivityManagerNative.java595 ArrayList<ContentProviderHolder> providers =
597 publishContentProviders(app, providers);
2212 List<ContentProviderHolder> providers) throws RemoteException
2218 data.writeTypedList(providers);
2211 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
H A DActivityThread.java367 List<ProviderInfo> providers; field in class:ActivityThread.AppBindData
666 ApplicationInfo appInfo, List<ProviderInfo> providers,
684 data.providers = providers;
3941 // don't bring up providers in restricted mode; they may depend on the
3944 List<ProviderInfo> providers = data.providers;
3945 if (providers != null) {
3946 installContentProviders(app, providers);
3947 // For process that contains content providers, w
665 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, String profileFile, ParcelFileDescriptor profileFd, boolean autoStopProfiler, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, int debugMode, boolean isRestrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
3978 installContentProviders( Context context, List<ProviderInfo> providers) argument
4385 installSystemProviders(List<ProviderInfo> providers) argument
[all...]
H A DIActivityManager.java157 List<ContentProviderHolder> providers) throws RemoteException;
156 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java575 * All of the currently running global content providers. Keys are a
585 * All of the currently running global content providers. Keys are a
593 * List of content providers who have clients waiting for them. The
1719 // If this process contains content providers, we want to keep
3572 ArrayList<ContentProviderRecord> providers = new ArrayList<ContentProviderRecord>();
3580 providers.add(provider);
3584 N = providers.size();
3586 removeDyingProviderLocked(null, providers.get(i));
3664 // Take care of any launching providers waiting for this process.
3770 List providers
6123 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
[all...]

Completed in 244 milliseconds