Searched defs:provider (Results 76 - 100 of 121) sorted by last modified time

12345

/frameworks/base/core/java/android/app/
H A DContextImpl.java2012 public boolean releaseProvider(IContentProvider provider) { argument
2013 return mMainThread.releaseProvider(provider, true);
H A DIActivityManager.java528 public IContentProvider provider; field in class:IActivityManager.ContentProviderHolder
544 if (provider != null) {
545 dest.writeStrongBinder(provider.asBinder());
568 provider = ContentProviderNative.asInterface(
H A DIApplicationThread.java137 void unstableProviderDied(IBinder provider) throws RemoteException; argument
145 void scheduleInstallProvider(ProviderInfo provider) throws RemoteException; argument
H A DMediaRouteActionProvider.java31 * The media route action provider displays a {@link MediaRouteButton media route button}
40 * when no routes are available, the action provider will instead make the
77 // FIXME: We currently have no way of knowing whether the action provider
78 // is still needed by the UI. Unfortunately this means the action provider
82 // application. To solve this problem, the action provider will need some
157 public MediaRouterCallback(MediaRouteActionProvider provider) { argument
158 mProviderWeak = new WeakReference<MediaRouteActionProvider>(provider);
177 MediaRouteActionProvider provider = mProviderWeak.get();
178 if (provider != null) {
179 provider
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java43 import android.provider.Settings;
151 * {@link android.provider.Settings.Global#DEVICE_PROVISIONED}
4071 * Designates a specific service component as the provider for
4074 * Only a profile owner can designate the restrictions provider.
4076 * @param provider The component name of the service that implements
4078 * it removes the restrictions provider previously assigned.
4081 @Nullable ComponentName provider) {
4084 mService.setRestrictionsProvider(admin, provider);
4086 Log.w(TAG, "Failed to set permission provider on device policy service");
4173 * a package may have zero or more provider component
4080 setRestrictionsProvider(@onNull ComponentName admin, @Nullable ComponentName provider) argument
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java58 * <td>A newly allocated appWidgetId, which will be bound to the AppWidget provider
98 * <td>A newly allocated appWidgetId, which will be bound to the AppWidget provider
103 * <td>The BroadcastReceiver that will be the AppWidget provider for this AppWidget.
108 * <td>An optional handle to a user profile under which runs the provider
137 * This action is not sent as a broadcast to the AppWidget provider, but as a startActivity
213 * An intent extra that contains the component name of a AppWidget provider.
221 * which an AppWidget provider is registered.
273 * <p>This may be sent in response to a new instance for this AppWidget provider having
283 * provider, or just a subset. The system tries to send updates for as few AppWidget
315 * Sent when the last AppWidget of this provider i
632 updateAppWidget(ComponentName provider, RemoteViews views) argument
808 bindAppWidgetId(int appWidgetId, ComponentName provider) argument
830 bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) argument
850 bindAppWidgetIdIfAllowed(int appWidgetId, ComponentName provider) argument
873 bindAppWidgetIdIfAllowed(int appWidgetId, ComponentName provider, Bundle options) argument
897 bindAppWidgetIdIfAllowed(int appWidgetId, UserHandle user, ComponentName provider, Bundle options) argument
1045 getAppWidgetIds(ComponentName provider) argument
1071 bindAppWidgetIdIfAllowed(int appWidgetId, int profileId, ComponentName provider, Bundle options) argument
[all...]
H A DAppWidgetProviderInfo.java31 * Describes the meta data for an installed AppWidget provider. The fields in this class
32 * correspond to the fields in the <code>&lt;appwidget-provider&gt;</code> xml tag.
76 public ComponentName provider; field in class:AppWidgetProviderInfo
150 * the AppWidget provider.
202 * widget provider's update method.
222 this.provider = new ComponentName(in);
271 * @return The provider icon.
298 * Gets the user profile in which the provider resides.
309 if (this.provider != null) {
311 this.provider
[all...]
/frameworks/base/core/java/android/content/
H A DAbstractThreadedSyncAdapter.java83 * with an authority whenever that authority's content provider does a
235 * the provider for this sync before calling onPerformSync and releases it afterwards. Cancel
265 ContentProviderClient provider = null;
270 provider = mContext.getContentResolver().acquireContentProviderClient(mAuthority);
271 if (provider != null) {
273 mAuthority, provider, syncResult);
284 if (provider != null) {
285 provider.release();
318 * @param provider a ContentProviderClient that points to the ContentProvider for this
323 String authority, ContentProviderClient provider, SyncResul
322 onPerformSync(Account account, Bundle extras, String authority, ContentProviderClient provider, SyncResult syncResult) argument
[all...]
H A DContentProviderOperation.java282 * Applies this operation using the given provider. The backRefs array is used to resolve any
286 * @param provider the {@link ContentProvider} on which this batch is applied
295 public ContentProviderResult apply(ContentProvider provider, ContentProviderResult[] backRefs, argument
302 Uri newUri = provider.insert(mUri, values);
311 numRows = provider.delete(mUri, mSelection, selectionArgs);
313 numRows = provider.update(mUri, values, mSelection, selectionArgs);
325 final Cursor cursor = provider.query(mUri, projection, mSelection, selectionArgs, null);
/frameworks/base/core/java/android/content/pm/
H A DPackageManagerInternal.java56 * Sets the location provider packages provider.
57 * @param provider The packages provider.
59 public abstract void setLocationPackagesProvider(PackagesProvider provider); argument
62 * Sets the input method packages provider.
63 * @param provider The packages provider.
65 public abstract void setImePackagesProvider(PackagesProvider provider); argument
68 * Sets the voice interaction packages provider
71 setVoiceInteractionPackagesProvider(PackagesProvider provider) argument
77 setSmsAppPackagesProvider(PackagesProvider provider) argument
83 setDialerAppPackagesProvider(PackagesProvider provider) argument
89 setSimCallManagerPackagesProvider(PackagesProvider provider) argument
95 setSyncAdapterPackagesprovider(SyncAdapterPackagesProvider provider) argument
[all...]
H A DPackageParser.java538 final Provider provider = p.providers.get(i);
539 if (provider.info.enabled
2703 } else if (tagName.equals("provider")) {
2901 } else if (tagName.equals("provider")) {
3483 mParseProviderArgs.tag = "<provider>";
3579 outError[0] = "<provider> does not include authorities attribute";
3583 outError[0] = "<provider> has empty authorities attribute";
3764 Slog.w(TAG, "Unknown element under <provider>: "
3770 outError[0] = "Bad element under <provider>: " + parser.getName();
5079 public final Provider provider; field in class:PackageParser.ProviderIntentInfo
5081 ProviderIntentInfo(Provider provider) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java234 private static String translateLocationProviderToProcess(final String provider) { argument
235 if (provider == null) {
238 switch(provider) {
821 "provider");
/frameworks/base/core/java/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 DBaseColumns.java17 package android.provider;
H A DBrowser.java17 package android.provider;
29 import android.provider.BrowserContract.Bookmarks;
30 import android.provider.BrowserContract.Combined;
31 import android.provider.BrowserContract.History;
32 import android.provider.BrowserContract.Searches;
H A DBrowserContract.java17 package android.provider;
34 * The contract between the browser provider and applications. Contains the definition
45 /** The authority for the browser provider */
48 /** A content:// style uri to the authority for the browser provider */
522 * @see android.provider.SyncStateContract.Helpers#get
524 public static byte[] get(ContentProviderClient provider, Account account) argument
526 return SyncStateContract.Helpers.get(provider, CONTENT_URI, account);
530 * @see android.provider.SyncStateContract.Helpers#get
532 public static Pair<Uri, byte[]> getWithUri(ContentProviderClient provider, Account account) argument
534 return SyncStateContract.Helpers.getWithUri(provider, CONTENT_UR
540 set(ContentProviderClient provider, Account account, byte[] data) argument
[all...]
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
112 * &lt;action android:name="android.provider.calendar.action.HANDLE_CUSTOM_EVENT" /&gt;
127 "android.provider.calendar.action.HANDLE_CUSTOM_EVENT";
155 * provider. Note: This is set at first run and cannot be changed without
156 * breaking apps that access the provider.
169 * and when the provider calls
347 * not use a key for looking up the color. The provider will update
477 * provider wil
1304 newEntityIterator(Cursor cursor, ContentProviderClient provider) argument
1354 EntityIteratorImpl(Cursor cursor, ContentProviderClient provider) argument
[all...]
H A DCallLog.java18 package android.provider;
32 import android.provider.ContactsContract.CommonDataKinds.Callable;
33 import android.provider.ContactsContract.CommonDataKinds.Phone;
34 import android.provider.ContactsContract.Data;
35 import android.provider.ContactsContract.DataUsageFeedback;
49 * The CallLog provider contains information about placed and received calls.
57 * The content:// style URL for this provider
93 * An optional URI parameter which instructs the provider to allow the operation to be
125 "android.provider.extra.CALL_TYPE_FILTER";
411 * @param accountHandle The accountHandle object identifying the provider o
[all...]
H A DContacts.java17 package android.provider;
37 * The Contacts provider stores all information about contacts.
49 * @deprecated see {@link android.provider.ContactsContract}
55 * The content:// style URL for this provider
56 * @deprecated see {@link android.provider.ContactsContract}
63 * @deprecated see {@link android.provider.ContactsContract}
69 * @deprecated see {@link android.provider.ContactsContract}
75 * @deprecated see {@link android.provider.ContactsContract}
81 * @deprecated see {@link android.provider.ContactsContract}
87 * @deprecated see {@link android.provider
[all...]
H A DContactsContract.java17 package android.provider;
54 * The contract between the contacts provider and applications. Contains
113 /** The authority for the contacts provider */
115 /** A content:// style uri to the authority for the contacts provider */
147 * {@link #PRIMARY_ACCOUNT_TYPE}. The contacts provider handling a query may rely on
151 * obtaining possible recipients, letting the provider know which account is selected during
152 * the composition. The provider may use the "primary account" information to optimize
173 * The boolean indicates that the provider did not create a snippet and that the client asking
192 * This enables a content provider to remove duplicate entries in results.
257 * A Directory is implemented as a content provider wit
602 get(ContentProviderClient provider, Account account) argument
610 getWithUri(ContentProviderClient provider, Account account) argument
618 set(ContentProviderClient provider, Account account, byte[] data) argument
656 get(ContentProviderClient provider, Account account) argument
664 getWithUri(ContentProviderClient provider, Account account) argument
672 set(ContentProviderClient provider, Account account, byte[] data) argument
[all...]
H A DContactsInternal.java16 package android.provider;
H A DDocumentsContract.java17 package android.provider;
56 * Defines the contract between a documents provider and the platform.
58 * To create a document provider, extend {@link DocumentsProvider}, which
85 * is used in the {@code <intent-filter>} of a {@code <provider>}.
99 public static final String EXTRA_EXCLUDE_SELF = "android.provider.extra.EXCLUDE_SELF";
113 public static final String EXTRA_PROMPT = "android.provider.extra.PROMPT";
116 public static final String ACTION_MANAGE_ROOT = "android.provider.action.MANAGE_ROOT";
118 public static final String ACTION_MANAGE_DOCUMENT = "android.provider.action.MANAGE_DOCUMENT";
122 ACTION_BROWSE_DOCUMENT_ROOT = "android.provider.action.BROWSE_DOCUMENT_ROOT";
126 ACTION_DOCUMENT_ROOT_SETTINGS = "android.provider
[all...]
H A DDocumentsProvider.java17 package android.provider;
19 import static android.provider.DocumentsContract.METHOD_CREATE_DOCUMENT;
20 import static android.provider.DocumentsContract.METHOD_DELETE_DOCUMENT;
21 import static android.provider.DocumentsContract.METHOD_RENAME_DOCUMENT;
22 import static android.provider.DocumentsContract.buildDocumentUri;
23 import static android.provider.DocumentsContract.buildDocumentUriMaybeUsingTree;
24 import static android.provider.DocumentsContract.buildTreeDocumentUri;
25 import static android.provider.DocumentsContract.getDocumentId;
26 import static android.provider.DocumentsContract.getRootId;
27 import static android.provider
[all...]
H A DDownloads.java17 package android.provider;
36 * content provider.
449 * provider). This requires the
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...]

Completed in 289 milliseconds

12345