Home
last modified time | relevance | path

Searched refs:providers (Results 1 – 25 of 142) sorted by relevance

123456

/frameworks/av/services/audioflinger/tests/
Dtest-mixer.cpp104 std::vector<SignalProvider> providers; in main() local
155 providers.resize(argc); in main()
171 providers[i].setChirp<float>(v[0], 0, v[1]/2, v[1], kSeconds); in main()
174 providers[i].setChirp<int16_t>(v[0], 0, v[1]/2, v[1], kSeconds); in main()
177 providers[i].setIncr(Pvalues); in main()
189 providers[i].setSine<float>(v[0], v[1], v[2], kSeconds); in main()
192 providers[i].setSine<int16_t>(v[0], v[1], v[2], kSeconds); in main()
195 providers[i].setIncr(Pvalues); in main()
202 providers[i].setFile<float>(argv[i]); in main()
205 providers[i].setFile<short>(argv[i]); in main()
[all …]
/frameworks/base/docs/html/guide/topics/providers/
Dcontent-providers.jd11 <a href="{@docRoot}guide/topics/providers/content-provider-basics.html">
15 <a href="{@docRoot}guide/topics/providers/content-provider-creating.html">
19 <a href="{@docRoot}guide/topics/providers/calendar-provider.html">Calendar Provider</a>
22 <a href="{@docRoot}guide/topics/providers/contacts-provider.html">Contacts Provider</a>
52 Content providers manage access to a structured set of data. They encapsulate the
53 data, and provide mechanisms for defining data security. Content providers are the standard
72 Android itself includes content providers that manage data such as audio, video, images, and
76 </code> package. With some restrictions, these providers are accessible to any Android
79 The following topics describe content providers in more detail:
83 <strong><a href="{@docRoot}guide/topics/providers/content-provider-basics.html">
[all …]
Ddocument-provider.jd68 <a href="{@docRoot}guide/topics/providers/content-provider-basics.html">
80 across all of their their preferred document storage providers. A standard, easy-to-use UI
81 lets users browse files and access recents in a consistent way across apps and providers.</p>
96 The Android platform includes several built-in document providers, such as
102 files returned by document providers.</li>
105 document providers that satisfy the client app's search criteria.</li>
110 <li>Lets users browse content from all document providers, not just a single app.</li>
115 providers, which only appear if the drive is plugged in. </li>
123 <p><img src="{@docRoot}images/providers/storage_datamodel.png" alt="data model" /></p>
169 <p><img src="{@docRoot}images/providers/storage_dataflow.png" alt="app" /></p>
[all …]
Dcontent-provider-basics.jd111 <a href="{@docRoot}guide/topics/providers/content-provider-creating.html">
115 <a href="{@docRoot}guide/topics/providers/calendar-provider.html">
126 the data. However, content providers are primarily intended to be used by other
127 applications, which access the provider using a provider client object. Together, providers
135 <li>How content providers work.</li>
138 <li>Other API features that facilitate working with providers.</li>
150 For example, one of the built-in providers in the Android platform is the user dictionary, which
315 comparing the authority to a system table of known providers. The
336 Many providers allow you to access a single row in a table by appending an ID value
399 The role of permissions in accessing providers is described in more detail in the section
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DProviderMap.java190 HashMap<ComponentName, ContentProviderRecord> providers, in collectPackageProvidersLocked() argument
193 for (ContentProviderRecord provider : providers.values()) { in collectPackageProvidersLocked()
328 ArrayList<ContentProviderRecord> providers = new ArrayList<ContentProviderRecord>(); in dumpProvider() local
337 providers.addAll(allProviders); in dumpProvider()
356 providers.add(r1); in dumpProvider()
360 providers.add(r1); in dumpProvider()
363 providers.add(r1); in dumpProvider()
369 if (providers.size() <= 0) { in dumpProvider()
374 for (int i=0; i<providers.size(); i++) { in dumpProvider()
379 dumpProvider("", fd, pw, providers.get(i), args, dumpAll); in dumpProvider()
/frameworks/base/docs/html/tools/testing/
Dcontentprovider_testing.jd63 Content providers, which store and retrieve data and make it accessible across applications,
65 own public providers for use by other applications. If you do, then you should test them
69 This document describes how to test public content providers, although the information is
70 also applicable to providers that you keep private to your own application. If you aren't
71 familiar with content providers or the Android testing framework, please read
72 <a href="{@docRoot}guide/topics/providers/content-providers.html">Content Providers</a>,
73 the guide to developing content providers, and
79 In Android, content providers are viewed externally as data APIs that provide
87 The base test case class for content providers,
156 Here are some specific guidelines for testing content providers.
[all …]
/frameworks/base/docs/html/training/contacts-provider/
Dindex.jd16 <li>Experience in using content providers</li>
23 <a href="{@docRoot}guide/topics/providers/content-provider-basics.html">
27 <a href="{@docRoot}guide/topics/providers/contacts-provider.html">
45 The <a href="{@docRoot}guide/topics/providers/contacts-provider.html">Contacts Provider</a> is
55 <a href="{@docRoot}guide/topics/providers/contacts-provider.html">Contacts Provider</a>.
/frameworks/base/location/lib/
DREADME.txt2 containing classes required by unbundled location providers.
5 o This library is effectively a PUBLIC API for unbundled location providers
20 Unbundled location providers (such as the NetworkLocationProvider)
/frameworks/base/media/lib/remotedisplay/
DREADME.txt2 containing classes required by unbundled remote display providers.
5 o This library is effectively a PUBLIC API for unbundled remote display providers
19 Unbundled remote display providers (such as Cast) cannot use internal
/frameworks/base/core/java/android/content/pm/
DPackageInfo.java136 public ProviderInfo[] providers; field in PackageInfo
311 dest.writeTypedArray(providers, parcelableFlags); in writeToParcel()
360 providers = source.createTypedArray(ProviderInfo.CREATOR); in PackageInfo()
/frameworks/base/docs/html/guide/topics/manifest/
Dprovider-element.jd42 application. All content providers in your application must be defined in a
46 You only declare content providers that are part of your application. Content providers in
50 The Android system stores references to content providers according to an <b>authority</b>
64 Android system looks up the authority in its list of known providers and their authorities.
74 For information on using and developing content providers, see the API Guide,
75 <a href="{@docRoot}guide/topics/providers/content-providers.html">Content Providers</a>.
102 application components, including content providers. The
198 relative to other content providers hosted by the same process.
199 When there are dependencies among content providers, setting this
306 <dd><a href="{@docRoot}guide/topics/providers/content-providers.html">Content Providers</a></dd>
/frameworks/base/core/java/android/appwidget/
DAppWidgetManager.java757 … ParceledListSlice<AppWidgetProviderInfo> providers = mService.getInstalledProvidersForProfile( in getInstalledProvidersForProfile() local
759 if (providers == null) { in getInstalledProvidersForProfile()
762 for (AppWidgetProviderInfo info : providers.getList()) { in getInstalledProvidersForProfile()
766 return providers.getList(); in getInstalledProvidersForProfile()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DEventLogTags.logtags3 option java_package com.android.providers.settings;
/frameworks/base/packages/SettingsProvider/test/
DAndroid.mk8 ../src/com/android/providers/settings/SettingsState.java
/frameworks/base/keystore/java/android/security/keystore/
DAndroidKeyStoreProvider.java99 Provider[] providers = Security.getProviders(); in install() local
101 for (int position = 0; position < providers.length; position++) { in install()
102 Provider provider = providers[position]; in install()
/frameworks/base/packages/SettingsProvider/
DAndroid.mk7 src/com/android/providers/settings/EventLogTags.logtags
/frameworks/base/services/core/java/com/android/server/location/
DLocationBasedCountryDetector.java125 List<String> providers = mLocationManager.getAllProviders(); in getLastKnownLocation() local
127 for (String provider : providers) { in getLastKnownLocation()
/frameworks/base/services/core/java/com/android/server/twilight/
DTwilightService.java322 final Iterator<String> providers = in retrieveLocation() local
324 while (providers.hasNext()) { in retrieveLocation()
326 mLocationManager.getLastKnownLocation(providers.next()); in retrieveLocation()
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
DLocationStatsAggregator.java153 List<String> providers = mLocationManager.getAllProviders(); in getLastKnownLocation() local
160 for (String provider : providers) { in getLastKnownLocation()
/frameworks/base/tests/RemoteDisplayProvider/
DREADME2 remote display providers using the API declared by the
/frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
DSettingsProviderPerformanceTest.java17 package com.android.providers.settings;
/frameworks/base/services/core/java/com/android/server/
DLocationManagerService.java1251 List<String> providers = getProviders(criteria, enabledOnly); in getBestProvider() local
1252 if (!providers.isEmpty()) { in getBestProvider()
1253 result = pickBest(providers); in getBestProvider()
1257 providers = getProviders(null, enabledOnly); in getBestProvider()
1258 if (!providers.isEmpty()) { in getBestProvider()
1259 result = pickBest(providers); in getBestProvider()
1268 private String pickBest(List<String> providers) { in pickBest() argument
1269 if (providers.contains(LocationManager.GPS_PROVIDER)) { in pickBest()
1271 } else if (providers.contains(LocationManager.NETWORK_PROVIDER)) { in pickBest()
1274 return providers.get(0); in pickBest()
[all …]
/frameworks/base/docs/html-intl/intl/zh-cn/training/basics/intents/
Dresult.jd118 …用获取结果的代码不会详细说明如何实际从结果读取数据,但它需要对<a href="{@docRoot}guide/topics/providers/content-providers.html">内…
/frameworks/base/docs/html-intl/intl/ja/training/basics/intents/
Dresult.jd118 …果からデータを読み取る方法の詳細には触れていませんが、これは、<a href="{@docRoot}guide/topics/providers/content-providers.html">コ…
/frameworks/base/docs/html-intl/intl/zh-tw/training/basics/intents/
Dresult.jd119 <a href="{@docRoot}guide/topics/providers/content-providers.html">內容提供者</a>相關討論。

123456