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

123456

/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";
/frameworks/base/core/java/android/provider/
H A DBaseColumns.java17 package android.provider;
H A DOpenableColumns.java17 package android.provider;
H A DSearchIndexableResource.java17 package android.provider;
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 DContactsInternal.java16 package android.provider;
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 DSearchIndexableData.java17 package android.provider;
/frameworks/support/documents-archive/src/android/support/provider/
H A DIoUtils.java17 package android.support.provider;
H A DParsedDocumentId.java17 package android.support.provider;
H A DPreconditions.java17 package android.support.provider;
/frameworks/base/location/lib/java/com/android/location/provider/
H A DActivityChangedEvent.java17 package com.android.location.provider;
H A DFusedProvider.java17 package com.android.location.provider;
27 * {@link com.android.location.provider.FusedProvider#getBinder()} in its getBinder() method.
41 * Gets the Binder associated with the provider.
45 * @return The IBinder instance associated with the provider.
52 * Sets the FusedLocationHardware instance in the provider..
H A DGeofenceProvider.java17 package com.android.location.provider;
29 * {@link com.android.location.provider.GeofenceProvider#getBinder()} in its getBinder() method.
47 * Returns the Binder interface for the geofence provider.
51 * @return the IBinder instance for the provider
H A DActivityRecognitionEvent.java17 package com.android.location.provider;
H A DActivityRecognitionProviderClient.java17 package com.android.location.provider;
29 * A client class for interaction with an Activity-Recognition provider.
47 ActivityRecognitionProvider provider;
49 provider = isSupported ? new ActivityRecognitionProvider(instance) : null;
54 onProviderChanged(isSupported, provider);
59 * Gets the binder needed to interact with proxy provider in the platform.
69 * @param isSupported whether the platform supports the provider natively
70 * @param instance the available provider's instance
H A DActivityRecognitionProviderWatcher.java17 package com.android.location.provider;
73 * Gets the binder needed to interact with proxy provider in the platform.
H A DFusedLocationHardwareSink.java17 package com.android.location.provider;
H A DProviderRequestUnbundled.java17 package com.android.location.provider;
/frameworks/support/documents-archive/tests/src/android/support/provider/
H A DTestUtils.java17 package android.support.provider.tests;
37 final File file = File.createTempFile("android.support.provider.tests{",
H A DIntegrationTest.java17 package android.support.provider.tests;
25 import android.provider.DocumentsContract.Document;
26 import android.provider.DocumentsContract;
42 * <p>Only checks if the provider, then helper are forwarding the calls to the
/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/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);

Completed in 302 milliseconds

123456