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

123

/frameworks/base/core/java/android/widget/
H A DActivityChooserView.java292 * Set the provider hosting this view, if applicable.
295 public void setProvider(ActionProvider provider) { argument
296 mProvider = provider;
/frameworks/base/location/java/android/location/
H A DLocation.java107 * Construct a new Location with a named provider.
112 * @param provider the name of the provider that generated this location
114 public Location(String provider) { argument
115 mProvider = provider;
467 * Returns the name of the provider that generated this fix.
469 * @return the provider, or null if it has not been set
476 * Sets the name of the provider that generated this fix.
478 public void setProvider(String provider) { argument
479 mProvider = provider;
[all...]
H A DLocationManager.java69 * Name of the network location provider.
70 * <p>This provider determines location based on
77 * Name of the GPS location provider.
79 * <p>This provider determines location using
80 * satellites. Depending on conditions, this provider may take a while to return
84 * <p> The extras Bundle for the GPS location provider can contain the
93 * A special location provider for receiving locations without actually initiating
96 * <p>This provider can be used to passively receive location updates
98 * the locations yourself. This provider will return locations generated by other
102 * not enabled this provider migh
222 onStatusChanged(String provider, int status, Bundle extras) argument
236 onProviderEnabled(String provider) argument
244 onProviderDisabled(String provider) argument
423 requestLocationUpdates(String provider, long minTime, float minDistance, LocationListener listener) argument
454 requestLocationUpdates(String provider, long minTime, float minDistance, LocationListener listener, Looper looper) argument
513 requestLocationUpdates(String provider, long minTime, float minDistance, PendingIntent intent) argument
643 requestSingleUpdate(String provider, LocationListener listener, Looper looper) argument
694 requestSingleUpdate(String provider, PendingIntent intent) argument
1084 isProviderEnabled(String provider) argument
1137 getLastKnownLocation(String provider) argument
1192 removeTestProvider(String provider) argument
1216 setTestProviderLocation(String provider, Location loc) argument
1247 clearTestProviderLocation(String provider) argument
1267 setTestProviderEnabled(String provider, boolean enabled) argument
1285 clearTestProviderEnabled(String provider) argument
1307 setTestProviderStatus(String provider, int status, Bundle extras, long updateTime) argument
1325 clearTestProviderStatus(String provider) argument
1568 sendExtraCommand(String provider, String command, Bundle extras) argument
1592 checkProvider(String provider) argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java585 IBinder provider = data.readStrongBinder();
586 unstableProviderDied(provider);
1181 public void unstableProviderDied(IBinder provider) throws RemoteException { argument
1184 data.writeStrongBinder(provider);
H A DContextImpl.java1996 public boolean releaseProvider(IContentProvider provider) { argument
1997 return mMainThread.releaseProvider(provider, true);
H A DIApplicationThread.java132 void unstableProviderDied(IBinder provider) throws RemoteException; argument
H A DIActivityManager.java377 public IContentProvider provider; field in class:IActivityManager.ContentProviderHolder
391 if (provider != null) {
392 dest.writeStrongBinder(provider.asBinder());
413 provider = ContentProviderNative.asInterface(
H A DActivityThread.java96 import org.apache.harmony.xnet.provider.jsse.OpenSSLSocketImpl;
333 ProviderClientRecord(String[] names, IContentProvider provider, argument
337 mProvider = provider;
1106 public void unstableProviderDied(IBinder provider) { argument
1107 queueOrSendMessage(H.UNSTABLE_PROVIDER_DIED, provider);
4357 // Allow disk access during application and provider setup. This could
4447 final IContentProvider provider = acquireExistingProvider(c, auth, userId, stable);
4448 if (provider != null) {
4449 return provider;
4453 // the same provider a
4572 releaseProvider(IContentProvider provider, boolean stable) argument
4700 handleUnstableProviderDied(IBinder provider, boolean fromClient) argument
4706 handleUnstableProviderDiedLocked(IBinder provider, boolean fromClient) argument
4737 installProviderAuthoritiesLocked(IContentProvider provider, ContentProvider localProvider, IActivityManager.ContentProviderHolder holder) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DAppWidgetServiceImpl.java120 Provider provider; field in class:AppWidgetServiceImpl.AppWidgetId
227 // Also note that remove the provider does not clear the Provider component data.
234 ComponentName cn = p.info.provider;
317 pw.print(" ["); pw.print(index); pw.print("] provider ");
318 pw.print(info.provider.flattenToShortString());
353 if (id.provider != null) {
354 pw.print(" provider=");
355 pw.println(id.provider.info.provider.flattenToShortString());
506 Provider p = id.provider;
542 bindAppWidgetIdImpl(int appWidgetId, ComponentName provider, Bundle options) argument
601 bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) argument
607 bindAppWidgetIdIfAllowed( String packageName, int appWidgetId, ComponentName provider, Bundle options) argument
971 updateAppWidgetProvider(ComponentName provider, RemoteViews views) argument
1173 lookupProviderLocked(ComponentName provider) argument
1325 getAppWidgetIds(ComponentName provider) argument
[all...]
H A DLocationManagerService.java58 import android.provider.Settings;
139 private PassiveProvider mPassiveProvider; // track passive provider for special cases
167 // mapping from provider name to provider
171 // mapping from provider name to all its UpdateRecords
175 // mapping from provider name to last known location
267 // this list the standard provider binding logic won't bind to it.
283 Log.w(TAG, "Found fused provider without metadata: " + packageName);
290 // This should be the fallback fused location provider.
308 if (D) Log.d(TAG, "Found fallback provider
493 callStatusChangedLocked(String provider, int status, Bundle extras) argument
562 callProviderEnabledLocked(String provider, boolean enabled) argument
656 addProviderLocked(LocationProviderInterface provider) argument
661 removeProviderLocked(LocationProviderInterface provider) argument
668 isAllowedBySettingsLocked(String provider, int userId) argument
746 getMinimumResolutionLevelForProviderUse(String provider) argument
900 providerMeetsCriteria(String provider, Criteria criteria) argument
933 updateProviderListenersLocked(String provider, boolean enabled, int userId) argument
975 applyRequirementsLocked(String provider) argument
1027 UpdateRecord(String provider, LocationRequest request, Receiver receiver) argument
1414 sendExtraCommand(String provider, String command, Bundle extras) argument
1456 getProviderProperties(String provider) argument
1474 isProviderEnabled(String provider) argument
1884 removeTestProvider(String provider) argument
1907 setTestProviderLocation(String provider, Location loc) argument
1922 clearTestProviderLocation(String provider) argument
1934 setTestProviderEnabled(String provider, boolean enabled) argument
1957 clearTestProviderEnabled(String provider) argument
1973 setTestProviderStatus(String provider, int status, Bundle extras, long updateTime) argument
1985 clearTestProviderStatus(String provider) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DCalendarContract.java17 package android.provider;
44 * The contract between the calendar provider and applications. Contains
77 * sync adapter. The provider takes no action with items in this table except to
113 * <action android:name="android.provider.calendar.action.HANDLE_CUSTOM_EVENT" />
130 "android.provider.calendar.action.HANDLE_CUSTOM_EVENT";
158 * provider. Note: This is set at first run and cannot be changed without
159 * breaking apps that access the provider.
172 * and when the provider calls
343 * not use a key for looking up the color. The provider will update
473 * provider wil
1295 newEntityIterator(Cursor cursor, ContentProviderClient provider) argument
1345 EntityIteratorImpl(Cursor cursor, ContentProviderClient provider) argument
[all...]
H A DContacts.java17 package android.provider;
38 * The Contacts provider stores all information about contacts.
50 * @deprecated see {@link android.provider.ContactsContract}
56 * The content:// style URL for this provider
57 * @deprecated see {@link android.provider.ContactsContract}
64 * @deprecated see {@link android.provider.ContactsContract}
70 * @deprecated see {@link android.provider.ContactsContract}
76 * @deprecated see {@link android.provider.ContactsContract}
82 * @deprecated see {@link android.provider.ContactsContract}
88 * @deprecated see {@link android.provider
[all...]
H A DMediaStore.java17 package android.provider;
45 * The Media provider contains meta data for all available media on both internal
62 public static final String ACTION_MTP_SESSION_END = "android.provider.action.MTP_SESSION_END";
65 * The method name used by the media scanner and mtp to tell the media provider to
100 * @see android.provider.MediaStore#EXTRA_MEDIA_ARTIST
101 * @see android.provider.MediaStore#EXTRA_MEDIA_ALBUM
102 * @see android.provider.MediaStore#EXTRA_MEDIA_TITLE
103 * @see android.provider.MediaStore#EXTRA_MEDIA_FOCUS
339 * The time the file was added to the media provider
362 * from MTP to the media provider
[all...]
H A DContactsContract.java17 package android.provider;
56 * The contract between the contacts provider and applications. Contains
115 /** The authority for the contacts provider */
117 /** A content:// style uri to the authority for the contacts provider */
149 * {@link #PRIMARY_ACCOUNT_TYPE}. The contacts provider handling a query may rely on
153 * obtaining possible recipients, letting the provider know which account is selected during
154 * the composition. The provider may use the "primary account" information to optimize
177 * The boolean indicates that the provider did not create a snippet and that the client asking
195 * This enables a content provider to remove duplicate entries in results.
260 * A key in the {@link android.provider
654 get(ContentProviderClient provider, Account account) argument
662 getWithUri(ContentProviderClient provider, Account account) argument
670 set(ContentProviderClient provider, Account account, byte[] data) argument
708 get(ContentProviderClient provider, Account account) argument
716 getWithUri(ContentProviderClient provider, Account account) argument
724 set(ContentProviderClient provider, Account account, byte[] data) argument
[all...]
H A DSettings.java17 package android.provider;
62 * The Settings provider contains global system-level device preferences.
481 * {@link #EXTRA_AUTHORITIES} extra to this Intent with one or more syncable content provider's
482 * authorities. Only account types which can sync with that content provider will be offered to
500 * extra to the Intent with one or more syncable content provider's authorities. Only account
501 * types which can sync with that content provider will be offered to the user.
664 * provider's authorities as a String[]. This field is used by some intents to alter the
731 // The method we'll call (or null, to not use) on the provider
799 // fails (alternate Settings provider that doesn't support
984 Log.w(TAG, "Setting " + name + " has moved from android.provider
4066 isLocationProviderEnabled(ContentResolver cr, String provider) argument
4078 isLocationProviderEnabledForUser(ContentResolver cr, String provider, int userId) argument
4090 setLocationProviderEnabled(ContentResolver cr, String provider, boolean enabled) argument
4103 setLocationProviderEnabledForUser(ContentResolver cr, String provider, boolean enabled, int userId) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaScanner.java36 import android.provider.MediaStore;
37 import android.provider.MediaStore.Audio;
38 import android.provider.MediaStore.Audio.Playlists;
39 import android.provider.MediaStore.Files;
40 import android.provider.MediaStore.Files.FileColumns;
41 import android.provider.MediaStore.Images;
42 import android.provider.MediaStore.Video;
43 import android.provider.Settings;
605 // used to force sorting. The media provider will trim() before
1074 // Tell the provider t
1226 MediaBulkDeleter(IContentProvider provider, Uri baseUri) argument
[all...]
/frameworks/base/services/java/com/android/server/location/
H A DGpsLocationProvider.java50 import android.provider.Settings;
51 import android.provider.Telephony.Carriers;
52 import android.provider.Telephony.Sms.Intents;
508 * Returns the name of this provider.
691 * Enables this provider. When enabled, calls to getStatus()
693 * when the provider is enabled.
722 Log.w(TAG, "Failed to enable location provider");
727 * Disables this provider. When disabled, calls to getStatus()
729 * down while the provider is disabled.
1548 public void onStatusChanged(String provider, in argument
1550 onProviderEnabled(String provider) argument
1552 onProviderDisabled(String provider) argument
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java17 package android.provider;
41 * The Telephony provider contains data related to phone operation.
542 "android.provider.Telephony.SMS_RECEIVED";
591 "android.provider.Telephony.WAP_PUSH_RECEIVED";
611 "android.provider.Telephony.SMS_CB_RECEIVED";
631 "android.provider.Telephony.SMS_EMERGENCY_CB_RECEIVED";
651 "android.provider.Telephony.SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED";
660 "android.provider.Telephony.SIM_FULL";
677 "android.provider.Telephony.SMS_REJECTED";

Completed in 300 milliseconds

123