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

12345

/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 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/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 DActivityRecognitionProviderWatcher.java17 package com.android.location.provider;
70 * 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;
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/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/media/java/android/media/
H A DMediaInserter.java30 * given provider. This class manages buffers internally and flushes when they
44 public MediaInserter(IContentProvider provider, String packageName, int bufferSizePerUri) { argument
45 mProvider = provider;
/frameworks/base/services/core/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/opt/photoviewer/src/com/android/ex/photo/provider/
H A DPhotoContract.java18 package com.android.ex.photo.provider;
21 import android.provider.OpenableColumns;

Completed in 2667 milliseconds

12345