Searched refs:providers (Results 1 - 17 of 17) sorted by path

/frameworks/base/core/java/android/app/
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 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 DIActivityManager.java157 List<ContentProviderHolder> providers) throws RemoteException;
156 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
H A DIApplicationThread.java89 void bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, argument
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java36 * Updates AppWidget state; gets information about installed AppWidget providers and other
376 * Return a list of the AppWidget providers that are currently installed.
380 List<AppWidgetProviderInfo> providers = sService.getInstalledProviders();
381 for (AppWidgetProviderInfo info : providers) {
392 return providers;
/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 DDatabaseHelper.java17 package com.android.providers.settings;
H A DSettingsBackupAgent.java17 package com.android.providers.settings;
H A DSettingsHelper.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/services/java/com/android/server/
H A DLocationManagerService.java108 // Set of providers that are explicitly enabled
111 // Set of providers that are explicitly disabled
114 // Locations, status values, and extras for mock providers
127 // Cache the real providers for use in addTestProvider() and removeTestProvider()
147 * List of location providers.
455 // Load providers
465 Slog.e(TAG, "Exception loading providers:", e);
470 // Attempt to load "real" providers first
532 // Load providers
758 ArrayList<LocationProviderInterface> providers;
[all...]
H A DUiModeManagerService.java753 final Iterator<String> providers =
755 while (providers.hasNext()) {
757 mLocationManager.getLastKnownLocation(providers.next());
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java578 * All of the currently running global content providers. Keys are a
588 * All of the currently running global content providers. Keys are a
596 * List of content providers who have clients waiting for them. The
1722 // If this process contains content providers, we want to keep
3646 ArrayList<ContentProviderRecord> providers = new ArrayList<ContentProviderRecord>();
3654 providers.add(provider);
3658 N = providers.size();
3660 removeDyingProviderLocked(null, providers.get(i));
3738 // Take care of any launching providers waiting for this process.
3844 List providers
6197 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
[all...]
/frameworks/base/services/java/com/android/server/location/
H A DLocationBasedCountryDetector.java37 * location providers and the GeoCoder
90 // We don't want to actively initiate a location fix here (with gps or network providers).
109 * @return the last known location from all providers
112 List<String> providers = mLocationManager.getAllProviders();
114 for (String provider : providers) {
142 * Queries the location from all location providers, then starts a thread to query the
150 // Request the location from all enabled providers.
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java3384 // Verify that this new package doesn't have any content providers
3389 final int N = pkg.providers.size();
3392 PackageParser.Provider p = pkg.providers.get(i);
3672 int N = pkg.providers.size();
3676 PackageParser.Provider p = pkg.providers.get(i);
3956 int N = pkg.providers.size();
3960 PackageParser.Provider p = pkg.providers.get(i);
7860 pw.println(" prov[iders]: dump content providers");
7893 } else if ("prov".equals(cmd) || "providers".equals(cmd)) {

Completed in 216 milliseconds