Searched defs:provider (Results 1 - 25 of 68) sorted by relevance

123

/frameworks/base/core/tests/coretests/src/android/provider/
H A DSmsProviderTest.java17 package android.provider;
23 import android.provider.Telephony.Sms;
H A DTestProvider.java17 package android.provider;
22 * Very simple provider that I can instantiate right here.
25 final static String AUTHORITY = "android.provider.TestProvider";
H A DSettingsProviderTest.java17 package android.provider;
31 import android.provider.Settings;
/frameworks/base/core/java/android/provider/
H A DBaseColumns.java17 package android.provider;
H A DOpenableColumns.java17 package android.provider;
H A DAlarmClock.java17 package android.provider;
23 * The AlarmClock provider contains an Intent action and extras that can be used
H A DSyncStateContract.java17 package android.provider;
65 * @param provider the {@link ContentProviderClient} that is to be used to communicate
73 public static byte[] get(ContentProviderClient provider, Uri uri, argument
75 Cursor c = provider.query(uri, DATA_PROJECTION, SELECT_BY_ACCOUNT,
78 // Unable to query the provider
95 * @param provider the {@link ContentProviderClient} that is to be used to communicate
103 public static void set(ContentProviderClient provider, Uri uri, argument
109 provider.insert(uri, values);
112 public static Uri insert(ContentProviderClient provider, Uri uri, argument
118 return provider
121 update(ContentProviderClient provider, Uri uri, byte[] data) argument
128 getWithUri(ContentProviderClient provider, Uri uri, Account account) argument
[all...]
H A DLiveFolders.java17 package android.provider;
38 * live folder is described by a content provider URI, a name, an icon and a display mode.
39 * Finally, when the user opens the live folder, the system queries the content provider
117 * <h3>Setting up the content provider</h3>
118 * <p>The live folder's content provider must, upon query, return a {@link android.database.Cursor}
178 * <p>Content provider column.</p>
186 * <p>Content provider column.</p>
197 * <p>Content provider column.</p>
207 * <p>Content provider column.</p>
215 * <p>Content provider colum
[all...]
H A DSyncConstValue.java17 package android.provider;
57 * Used in temporary provider while syncing, always NULL for rows in persistent providers.
H A DApplications.java17 package android.provider;
27 * The Applications provider gives information about installed applications.
34 * The content authority for this provider.
39 * The content:// style URL for this provider
H A DDrmStore.java17 package android.provider;
37 * The DRM provider contains forward locked DRM content.
48 * This is in the Manifest class of the drm provider, but that isn't visible
95 * Utility function for inserting a file into the DRM content provider.
131 * Utility function for inserting a file stream into the DRM content provider.
H A DUserDictionary.java17 package android.provider;
28 * A provider of user defined words for input methods to use for predictive text input.
34 /** Authority string for this provider. */
38 * The content:// style URL for this provider
/frameworks/base/location/java/android/location/
H A DLocationListener.java47 * Called when the provider status changes. This method is called when
48 * a provider is unable to fetch a location or if the provider has recently
51 * @param provider the name of the location provider associated with this
54 * provider is out of service, and this is not expected to change in the
56 * the provider is temporarily unavailable but is expected to be available
58 * provider is currently available.
59 * @param extras an optional Bundle which will contain provider specific
70 void onStatusChanged(String provider, in argument
78 onProviderEnabled(String provider) argument
88 onProviderDisabled(String provider) argument
[all...]
/frameworks/base/location/lib/java/com/android/location/provider/
H A DProviderRequestUnbundled.java17 package com.android.location.provider;
H A DGeocodeProvider.java17 package com.android.location.provider;
75 * Returns the Binder interface for the geocode provider.
79 * @return the IBinder instance for the provider
H A DLocationRequestUnbundled.java17 package com.android.location.provider;
H A DProviderPropertiesUnbundled.java17 package com.android.location.provider;
/frameworks/ex/photoviewer/src/com/android/ex/photo/provider/
H A DPhotoContract.java18 package com.android.ex.photo.provider;
21 import android.provider.OpenableColumns;
/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/
H A DPhotoContract.java18 package com.android.ex.photo.provider;
21 import android.provider.OpenableColumns;
/frameworks/base/media/java/android/media/
H A DMediaInserter.java30 * given provider. This class manages buffers internally and flushes when they
43 public MediaInserter(IContentProvider provider, int bufferSizePerUri) { argument
44 mProvider = provider;
/frameworks/base/services/java/com/android/server/am/
H A DContentProviderConnection.java24 * Represents a link between a content provider and client.
27 public final ContentProviderRecord provider; field in class:ContentProviderConnection
32 // The client of this connection is currently waiting for the provider to appear.
33 // Protected by the provider lock.
35 // The provider of this connection is now dead.
43 provider = _provider;
69 sb.append(provider.toShortString());
/frameworks/av/media/libnbaio/
H A DAudioBufferProviderSource.cpp26 AudioBufferProviderSource::AudioBufferProviderSource(AudioBufferProvider *provider, argument
28 NBAIO_Source(format), mProvider(provider), mConsumed(0)
30 ALOG_ASSERT(provider != NULL);
/frameworks/av/services/audioflinger/
H A DAudioResamplerCubic.cpp36 AudioBufferProvider* provider) {
44 resampleMono16(out, outFrameCount, provider);
47 resampleStereo16(out, outFrameCount, provider);
53 AudioBufferProvider* provider) {
68 provider->getNextBuffer(&mBuffer, mPTS);
96 provider->releaseBuffer(&mBuffer);
98 provider->getNextBuffer(&mBuffer,
119 AudioBufferProvider* provider) {
134 provider->getNextBuffer(&mBuffer, mPTS);
162 provider
35 resample(int32_t* out, size_t outFrameCount, AudioBufferProvider* provider) argument
52 resampleStereo16(int32_t* out, size_t outFrameCount, AudioBufferProvider* provider) argument
118 resampleMono16(int32_t* out, size_t outFrameCount, AudioBufferProvider* provider) argument
[all...]
/frameworks/base/services/java/com/android/server/location/
H A DLocationBasedCountryDetector.java89 protected boolean isAcceptableProvider(String provider) { argument
91 return LocationManager.PASSIVE_PROVIDER.equals(provider);
95 * Register a listener with a provider name
97 protected void registerListener(String provider, LocationListener listener) { argument
98 mLocationManager.requestLocationUpdates(provider, 0, 0, listener);
114 for (String provider : providers) {
115 Location lastKnownLocation = mLocationManager.getLastKnownLocation(provider);
158 String provider = enabledProviders.get(i);
159 if (isAcceptableProvider(provider)) {
169 public void onProviderDisabled(String provider) {
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentResolver.java37 * authority. To have access to a provider based on its authority, users of
38 * MockContentResolver first instantiate the provider and
43 * Users can also set an authority's entry in the map to null, so that a provider is completely
59 * API call tries to acquire a provider.
67 * Adds access to a provider based on its authority
69 * @param name The authority name associated with the provider.
70 * @param provider An instance of {@link android.content.ContentProvider} or one of its
73 public void addProvider(String name, ContentProvider provider) { argument
76 * Maps the authority to the provider locally.
78 mProviders.put(name, provider);
105 releaseProvider(IContentProvider provider) argument
[all...]

Completed in 530 milliseconds

123