Searched refs:providers (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
H A DProviderMap.java35 * Keeps track of content providers by authority (name) and class. It separates the mapping by
36 * user and ones that are not user-specific (system providers).
188 HashMap<ComponentName, ContentProviderRecord> providers,
191 for (ContentProviderRecord provider : providers.values()) {
260 pw.println(" Published single-user content providers (by class):");
269 + " content providers (by class):");
290 ArrayList<ContentProviderRecord> providers = new ArrayList<ContentProviderRecord>();
299 providers.addAll(allProviders);
318 providers.add(r1);
322 providers
186 collectForceStopProvidersLocked(String name, int appId, boolean doit, boolean evenPersistent, int userId, HashMap<ComponentName, ContentProviderRecord> providers, ArrayList<ContentProviderRecord> result) argument
[all...]
H A DActivityManagerService.java614 * List of content providers who have clients waiting for them. The
1919 // If this process contains content providers, we want to keep
4007 ArrayList<ContentProviderRecord> providers = new ArrayList<ContentProviderRecord>();
4009 userId, providers)) {
4015 N = providers.size();
4017 removeDyingProviderLocked(null, providers.get(i), true);
4151 // Take care of any launching providers waiting for this process.
4245 List providers = normalMode ? generateApplicationProvidersLocked(app) : null;
4303 thread.bindApplication(processName, appInfo, providers,
6313 List<ProviderInfo> providers
6832 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java115 public ProviderInfo[] providers; field in class:PackageInfo
261 dest.writeTypedArray(providers, parcelableFlags);
302 providers = source.createTypedArray(ProviderInfo.CREATOR);
H A DPackageParser.java380 int N = p.providers.size();
383 pi.providers = new ProviderInfo[N];
387 if (p.providers.get(i).info.enabled) num++;
389 pi.providers = new ProviderInfo[num];
392 final Provider provider = p.providers.get(i);
395 pi.providers[j++] = generateProviderInfo(p.providers.get(i), flags,
1996 owner.providers.add(p);
2579 // should have their content providers exported by default, unless they
2649 // A heavy-weight application can not have providers i
3273 public final ArrayList<Provider> providers = new ArrayList<Provider>(0); field in class:PackageParser.Package
[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) {
144 * Queries the location from all location providers, then starts a thread to query the
152 // Request the location from all enabled providers.
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java17 package com.android.providers.settings;
785 * This setting contains a list of the currently enabled location providers.
786 * But helper functions in android.providers.Settings can enable or disable
801 // read list of enabled providers into "providers"
802 String providers = "";
809 providers = cursor.getString(0);
815 int index = providers.indexOf(value);
818 if (index > 0 && providers.charAt(index - 1) != ',') index = -1;
819 if (end < providers
[all...]
H A DSettingsHelper.java17 package com.android.providers.settings;
H A DSettingsBackupAgent.java17 package com.android.providers.settings;
H A DDatabaseHelper.java17 package com.android.providers.settings;
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java39 * Updates AppWidget state; gets information about installed AppWidget providers and other
558 * Return a list of the AppWidget providers that are currently installed.
565 * Return a list of the AppWidget providers that are currently installed.
567 * @param categoryFilter Will only return providers which register as any of the specified
573 List<AppWidgetProviderInfo> providers = sService.getInstalledProviders(categoryFilter,
575 for (AppWidgetProviderInfo info : providers) {
586 return providers;
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DLocationStatsAggregator.java153 List<String> providers = mLocationManager.getAllProviders();
160 for (String provider : providers) {
/frameworks/base/services/java/com/android/server/
H A DTwilightService.java424 final Iterator<String> providers =
426 while (providers.hasNext()) {
428 mLocationManager.getLastKnownLocation(providers.next());
H A DLocationManagerService.java149 // Set of providers that are explicitly enabled
152 // Set of providers that are explicitly disabled
155 // Mock (test) providers
162 // currently installed providers (with mocks replacing real providers)
166 // real providers, saved here when mocked out
186 // all providers that operate over proxy, for authorizing incoming location
234 // prepare providers
354 These packages can contain services implementing location providers:
357 service components implementing these providers
990 pickBest(List<String> providers) argument
[all...]
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java90 void bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, argument
H A DActivityThread.java419 List<ProviderInfo> providers; field in class:ActivityThread.AppBindData
730 ApplicationInfo appInfo, List<ProviderInfo> providers,
749 data.providers = providers;
4420 // don't bring up providers in restricted mode; they may depend on the
4423 List<ProviderInfo> providers = data.providers;
4424 if (providers != null) {
4425 installContentProviders(app, providers);
4426 // For process that contains content providers, w
729 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, String profileFile, ParcelFileDescriptor profileFd, boolean autoStopProfiler, 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
4471 installContentProviders( Context context, List<ProviderInfo> providers) argument
5028 installSystemProviders(List<ProviderInfo> providers) argument
[all...]
H A DApplicationThreadNative.java259 List<ProviderInfo> providers =
282 providers, testName, profileName, profileFd, autoStopProfiler,
879 List<ProviderInfo> providers, ComponentName testName, String profileName,
890 data.writeTypedList(providers);
878 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler, 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 DIActivityManager.java126 List<ContentProviderHolder> providers) throws RemoteException;
125 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
H A DActivityManagerNative.java672 ArrayList<ContentProviderHolder> providers =
674 publishContentProviders(app, providers);
2641 List<ContentProviderHolder> providers) throws RemoteException
2647 data.writeTypedList(providers);
2640 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java3446 assertNotNull("providers should not be null", packageInfo.providers);
3483 assertNotNull("providers should not be null", packageInfo.providers);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java4184 // Verify that this new package doesn't have any content providers
4189 final int N = pkg.providers.size();
4192 PackageParser.Provider p = pkg.providers.get(i);
4589 int N = pkg.providers.size();
4593 PackageParser.Provider p = pkg.providers.get(i);
4930 int N = pkg.providers.size();
4934 PackageParser.Provider p = pkg.providers.get(i);
9991 pw.println(" prov[iders]: dump content providers");
10032 } else if ("prov".equals(cmd) || "providers".equals(cmd)) {

Completed in 2271 milliseconds