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

/frameworks/base/awt/javax/imageio/spi/
H A DServiceRegistry.java31 * service. Service providers can be associated with one or more categories.
61 * Looks up and instantiates the available providers of this service using
68 * @return the iterator of providers objects for this service.
75 * Looks up and instantiates the available providers of this service using
80 * @return the iterator of providers objects for this service.
102 * Registers a list of service providers.
104 * @param providers
105 * the list of service providers.
107 public void registerServiceProviders(Iterator<?> providers) { argument
108 for (Iterator<?> iterator = providers; iterato
438 Map<Class<?>, Object> providers = new HashMap<Class<?>, Object>(); field in class:ServiceRegistry.ProvidersMap
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java17 package com.android.providers.settings;
361 * This setting contains a list of the currently enabled location providers.
362 * But helper functions in android.providers.Settings can enable or disable
377 // read list of enabled providers into "providers"
378 String providers = "";
385 providers = cursor.getString(0);
391 int index = providers.indexOf(value);
394 if (index > 0 && providers.charAt(index - 1) != ',') index = -1;
395 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/content/pm/
H A DPackageInfo.java103 public ProviderInfo[] providers; field in class:PackageInfo
214 dest.writeTypedArray(providers, parcelableFlags);
249 providers = source.createTypedArray(ProviderInfo.CREATOR);
H A DPackageParser.java276 int N = p.providers.size();
279 pi.providers = new ProviderInfo[N];
283 if (p.providers.get(i).info.enabled) num++;
285 pi.providers = new ProviderInfo[num];
288 final Provider provider = p.providers.get(i);
291 pi.providers[j++] = generateProviderInfo(p.providers.get(i), flags);
1633 owner.providers.add(p);
2661 public final ArrayList<Provider> providers = new ArrayList<Provider>(0); field in class:PackageParser.Package
2746 for (int i=providers
[all...]
/frameworks/base/location/java/android/location/
H A DLocationManager.java88 * providers. You can query the {@link Location#getProvider()} method to determine
243 * Returns a list of the names of all known location providers. All
244 * providers are returned, including ones that are not permitted to be
247 * @return list of Strings containing names of the providers
262 * Returns a list of the names of location providers. Only providers that
265 * @param enabledOnly if true then only the providers which are currently
267 * @return list of Strings containing names of the providers
307 * criteria, or null if none do. Only providers that are permitted to be
310 * @param criteria the criteria that the returned providers mus
[all...]
/frameworks/base/services/java/com/android/server/
H A DUiModeManagerService.java712 final Iterator<String> providers =
714 while (providers.hasNext()) {
716 mLocationManager.getLastKnownLocation(providers.next());
H A DLocationManagerService.java102 // Set of providers that are explicitly enabled
105 // Set of providers that are explicitly disabled
108 // Locations, status values, and extras for mock providers
119 // Cache the real providers for use in addTestProvider() and removeTestProvider()
138 * List of location providers.
433 // Load providers
443 Slog.e(TAG, "Exception loading providers:", e);
448 // Attempt to load "real" providers first
505 // Load providers
941 // Record which providers wer
[all...]
H A DPackageManagerService.java3053 // Verify that this new package doesn't have any content providers
3058 int N = pkg.providers.size();
3061 PackageParser.Provider p = pkg.providers.get(i);
3266 int N = pkg.providers.size();
3270 PackageParser.Provider p = pkg.providers.get(i);
3839 int N = pkg.providers.size();
3843 PackageParser.Provider p = pkg.providers.get(i);
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java239 List<ProviderInfo> providers =
252 providers, testName, profileName,
649 List<ProviderInfo> providers, ComponentName testName,
657 data.writeTypedList(providers);
648 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, Bundle testArgs, IInstrumentationWatcher testWatcher, int debugMode, boolean restrictedBackupMode, Configuration config, Map<String, IBinder> services) argument
H A DIApplicationThread.java81 void bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, argument
H A DActivityThread.java1425 List<ProviderInfo> providers; field in class:ActivityThread.AppBindData
1633 ApplicationInfo appInfo, List<ProviderInfo> providers,
1647 data.providers = providers;
4235 List<ProviderInfo> providers = data.providers;
4236 if (providers != null) {
4237 installContentProviders(app, providers);
4238 // For process that contain content providers, we want to
4268 Context context, List<ProviderInfo> providers) {
1632 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, String profileFile, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, int debugMode, boolean isRestrictedBackupMode, Configuration config, Map<String, IBinder> services) argument
4267 installContentProviders( Context context, List<ProviderInfo> providers) argument
4610 installSystemProviders(List providers) argument
[all...]
H A DIActivityManager.java151 List<ContentProviderHolder> providers) throws RemoteException;
150 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
H A DActivityManagerNative.java587 ArrayList<ContentProviderHolder> providers =
589 publishContentProviders(app, providers);
1852 List<ContentProviderHolder> providers) throws RemoteException
1858 data.writeTypedList(providers);
1851 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java723 * All of the currently running global content providers. Keys are a
732 * All of the currently running global content providers. Keys are a
739 * List of content providers who have clients waiting for them. The
1621 // If this process contains content providers, we want to keep
5419 // Take care of any launching providers waiting for this process.
5521 List providers = normalMode ? generateApplicationProvidersLocked(app) : null;
5559 ? app.instrumentationInfo : app.info, providers,
7743 List providers = null;
7745 providers = ActivityThread.getPackageManager().
7750 if (providers !
8102 publishContentProviders(IApplicationThread caller, List<ContentProviderHolder> providers) argument
[all...]

Completed in 223 milliseconds