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

12

/frameworks/av/services/audioflinger/tests/
H A Dtest-mixer.cpp104 std::vector<SignalProvider> providers; local
153 // create providers for each track
155 providers.resize(argc);
171 providers[i].setChirp<float>(v[0], 0, v[1]/2, v[1], kSeconds);
174 providers[i].setChirp<int16_t>(v[0], 0, v[1]/2, v[1], kSeconds);
177 providers[i].setIncr(Pvalues);
189 providers[i].setSine<float>(v[0], v[1], v[2], kSeconds);
192 providers[i].setSine<int16_t>(v[0], v[1], v[2], kSeconds);
195 providers[i].setIncr(Pvalues);
202 providers[
[all...]
/frameworks/base/packages/SettingsProvider/
H A DAndroid.mk7 src/com/android/providers/settings/EventLogTags.logtags
/frameworks/base/packages/SettingsProvider/test/
H A DAndroid.mk8 ../src/com/android/providers/settings/SettingsState.java
/frameworks/base/services/core/java/com/android/server/webkit/
H A DWebViewUpdateServiceImpl.java66 private boolean existsValidNonFallbackProvider(WebViewProviderInfo[] providers) { argument
67 for (WebViewProviderInfo provider : providers) {
388 List<ProviderAndPackageInfo> providers = new ArrayList<>();
395 providers.add(new ProviderAndPackageInfo(allProviders[n], packageInfo));
401 return providers.toArray(new ProviderAndPackageInfo[providers.size()]);
410 WebViewProviderInfo[] providers =
413 providers[n] = providersAndPackageInfos[n].provider;
415 return providers;
436 ProviderAndPackageInfo[] providers
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProviderMap.java37 * Keeps track of content providers by authority (name) and class. It separates the mapping by
38 * user and ones that are not user-specific (system providers).
190 HashMap<ComponentName, ContentProviderRecord> providers,
193 for (ContentProviderRecord provider : providers.values()) {
300 " Published single-user content providers (by class):", needSep,
308 + " content providers (by class):", needSep, map);
328 ArrayList<ContentProviderRecord> providers = new ArrayList<ContentProviderRecord>();
337 providers.addAll(allProviders);
356 providers.add(r1);
360 providers
188 collectPackageProvidersLocked(String packageName, Set<String> filterByClasses, boolean doit, boolean evenPersistent, HashMap<ComponentName, ContentProviderRecord> providers, ArrayList<ContentProviderRecord> result) argument
[all...]
/frameworks/base/packages/DocumentsUI/app-perf-tests/src/com/android/documentsui/
H A DFilesAppPerfTest.java69 // Kill all providers, as well as DocumentsUI to measure a cold start.
101 final List<ResolveInfo> providers = pm.queryIntentContentProviders(intent, 0);
102 for (ResolveInfo info : providers) {
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java136 public ProviderInfo[] providers; field in class:PackageInfo
311 dest.writeTypedArray(providers, parcelableFlags | Parcelable.PARCELABLE_ELIDE_DUPLICATES);
360 providers = source.createTypedArray(ProviderInfo.CREATOR);
382 propagateApplicationInfo(applicationInfo, providers);
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUCache.java95 HSOsuProvidersElement providers = new HSOsuProvidersElement(
99 putProviders(scanResult, providers);
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationBasedCountryDetector.java38 * location providers and the GeoCoder
91 // We don't want to actively initiate a location fix here (with gps or network providers).
120 * @return the last known location from all providers
125 List<String> providers = mLocationManager.getAllProviders();
127 for (String provider : providers) {
160 * Queries the location from all location providers, then starts a thread to query the
168 // Request the location from all enabled providers.
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java39 * Updates AppWidget state; gets information about installed AppWidget providers and other
673 * Gets the AppWidget providers for the given user profile. User profile can only
678 * @param profile The profile for which to get providers. Passing null is equivaled
680 * @return The intalled providers.
694 * Return a list of the AppWidget providers that are currently installed.
705 * Gets the AppWidget providers for the current user.
707 * @param categoryFilter Will only return providers which register as any of the specified
709 * @return The intalled providers.
724 * Gets the AppWidget providers for the given user profile. User profile can only
729 * @param categoryFilter Will only return providers whic
[all...]
/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
H A DSettingsProviderPerformanceTest.java17 package com.android.providers.settings;
H A DBaseSettingsProviderTest.java17 package com.android.providers.settings;
H A DSettingsStateTest.java16 package com.android.providers.settings;
H A DSettingsProviderTest.java17 package com.android.providers.settings;
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreProvider.java103 Provider[] providers = Security.getProviders();
105 for (int i = 0; i < providers.length; i++) {
106 Provider provider = providers[i];
/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/core/java/com/android/server/twilight/
H A DTwilightService.java439 final Iterator<String> providers =
441 while (providers.hasNext()) {
443 mLocationManager.getLastKnownLocation(providers.next());
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DGenerationRegistry.java17 package com.android.providers.settings;
H A DSettingsHelper.java17 package com.android.providers.settings;
H A DSettingsState.java17 package com.android.providers.settings;
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java170 // Set of providers that are explicitly enabled
173 // Set of providers that are explicitly disabled
176 // Mock (test) providers
183 // currently installed providers (with mocks replacing real providers)
187 // real providers, saved here when mocked out
209 // all providers that operate over proxy, for authorizing incoming location
225 // providers as they get certain permissions granted by default.
289 // prepare providers
469 These packages can contain services implementing location providers
1305 pickBest(List<String> providers) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsCache.java122 * Gather roots from all known storage providers.
146 * Gather roots from storage providers belonging to given package name.
153 * Gather roots from storage providers belonging to given authority.
256 final List<ResolveInfo> providers = pm.queryIntentContentProviders(intent, 0);
257 for (ResolveInfo info : providers) {
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java283 List<ProviderInfo> providers =
304 bindApplication(packageName, info, providers, testName, profilerInfo, testArgs,
1050 List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo,
1060 data.writeTypedList(providers);
1049 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, Bundle testArgs, IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection, int debugMode, boolean enableBinderTracking, boolean trackAllocation, 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
/frameworks/base/services/tests/servicestests/src/com/android/server/webkit/
H A DWebViewUpdateServiceTest.java86 private void setEnabledAndValidPackageInfos(WebViewProviderInfo[] providers) { argument
87 for(WebViewProviderInfo wpi : providers) {

Completed in 2328 milliseconds

12