Searched refs:projection (Results 1 - 25 of 84) sorted by relevance

1234

/frameworks/base/media/java/android/media/projection/
H A DMediaProjectionInfo.aidl17 package android.media.projection;
H A DIMediaProjectionCallback.aidl17 package android.media.projection;
H A DIMediaProjectionWatcherCallback.aidl17 package android.media.projection;
19 import android.media.projection.MediaProjectionInfo;
H A DIMediaProjectionManager.aidl17 package android.media.projection;
19 import android.media.projection.IMediaProjection;
20 import android.media.projection.IMediaProjectionCallback;
21 import android.media.projection.IMediaProjectionWatcherCallback;
22 import android.media.projection.MediaProjectionInfo;
30 boolean isValidMediaProjection(IMediaProjection projection);
H A DIMediaProjection.aidl17 package android.media.projection;
19 import android.media.projection.IMediaProjectionCallback;
H A DMediaProjectionManager.java17 package android.media.projection;
24 import android.media.projection.IMediaProjection;
47 public static final String EXTRA_APP_TOKEN = "android.media.projection.extra.EXTRA_APP_TOKEN";
50 "android.media.projection.extra.EXTRA_MEDIA_PROJECTION";
98 IBinder projection = resultData.getIBinderExtra(EXTRA_MEDIA_PROJECTION);
99 if (projection == null) {
102 return new MediaProjection(mContext, IMediaProjection.Stub.asInterface(projection));
113 Log.e(TAG, "Unable to get the active projection info", e);
119 * Stop the current projection if there is one.
126 Log.e(TAG, "Unable to stop the currently active media projection",
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DContentResolverCompat.java33 Uri uri, String[] projection, String selection, String[] selectionArgs,
39 public Cursor query(ContentResolver resolver, Uri uri, String[] projection, argument
47 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
53 public Cursor query(ContentResolver resolver, Uri uri, String[] projection, argument
58 uri, projection, selection, selectionArgs, sortOrder,
94 * <li>Provide an explicit projection, to prevent
105 * @param projection A list of which columns to return. Passing null will
123 Uri uri, String[] projection, String selection, String[] selectionArgs,
125 return IMPL.query(resolver, uri, projection, selection, selectionArgs,
32 query(ContentResolver resolver, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder, CancellationSignal cancellationSignal) argument
122 query(ContentResolver resolver, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder, CancellationSignal cancellationSignal) argument
H A DCursorLoader.java129 public CursorLoader(Context context, Uri uri, String[] projection, String selection, argument
134 mProjection = projection;
198 public void setProjection(String[] projection) { argument
199 mProjection = projection;
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoPagerLoader.java35 Context context, Uri photosUri, String[] projection) {
38 mProjection = projection != null ? projection : PhotoContract.PhotoQuery.PROJECTION;
34 PhotoPagerLoader( Context context, Uri photosUri, String[] projection) argument
/frameworks/support/v4/jellybean/android/support/v4/content/
H A DContentResolverCompatJellybean.java26 public static Cursor query(ContentResolver resolver, Uri uri, String[] projection, argument
29 return resolver.query(uri, projection, selection, selectionArgs, sortOrder,
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportStorageProvider.java55 public Cursor queryRoots(String[] projection) throws FileNotFoundException { argument
56 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
67 public Cursor queryDocument(String documentId, String[] projection) argument
69 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
85 String parentDocumentId, String[] projection, String sortOrder)
87 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
117 private static String[] resolveRootProjection(String[] projection) { argument
118 return projection != null ? projection : DEFAULT_ROOT_PROJECTION;
121 private static String[] resolveDocumentProjection(String[] projection) { argument
84 queryChildDocuments( String parentDocumentId, String[] projection, String sortOrder) argument
[all...]
/frameworks/base/services/core/java/com/android/server/media/projection/
H A DMediaProjectionManagerService.java17 package com.android.server.media.projection;
27 import android.media.projection.IMediaProjectionManager;
28 import android.media.projection.IMediaProjection;
29 import android.media.projection.IMediaProjectionCallback;
30 import android.media.projection.IMediaProjectionWatcherCallback;
31 import android.media.projection.MediaProjectionInfo;
32 import android.media.projection.MediaProjectionManager;
108 private void startProjectionLocked(final MediaProjection projection) { argument
115 mProjectionToken = projection.asBinder();
116 mProjectionGrant = projection;
120 stopProjectionLocked(final MediaProjection projection) argument
165 dispatchStart(MediaProjection projection) argument
169 dispatchStop(MediaProjection projection) argument
247 isValidMediaProjection(IMediaProjection projection) argument
529 dispatchStart(MediaProjection projection) argument
543 dispatchStop(MediaProjection projection) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DSearchIndexablesProvider.java106 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
125 * @param projection list of {@link android.provider.SearchIndexablesContract.XmlResource}
129 public abstract Cursor queryXmlResources(String[] projection); argument
136 * @param projection list of {@link android.provider.SearchIndexablesContract.RawData} columns
140 public abstract Cursor queryRawData(String[] projection); argument
147 * @param projection list of {@link android.provider.SearchIndexablesContract.NonIndexableKey}
151 public abstract Cursor queryNonIndexableKeys(String[] projection); argument
H A DDocumentsProvider.java274 * @param projection list of {@link Root} columns to put into the cursor. If
277 public abstract Cursor queryRoots(String[] projection) throws FileNotFoundException; argument
288 * @param projection list of {@link Document} columns to put into the
294 public Cursor queryRecentDocuments(String rootId, String[] projection) argument
304 * @param projection list of {@link Document} columns to put into the
308 public abstract Cursor queryDocument(String documentId, String[] projection) argument
333 * @param projection list of {@link Document} columns to put into the
347 String parentDocumentId, String[] projection, String sortOrder)
353 String parentDocumentId, String[] projection, String sortOrder)
385 * @param projection lis
346 queryChildDocuments( String parentDocumentId, String[] projection, String sortOrder) argument
352 queryChildDocumentsForManage( String parentDocumentId, String[] projection, String sortOrder) argument
393 querySearchDocuments(String rootId, String query, String[] projection) argument
476 query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
[all...]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DTestDocumentsProvider.java93 private static String[] resolveRootProjection(String[] projection) { argument
95 return projection != null ? projection : DEFAULT_ROOT_PROJECTION;
98 private static String[] resolveDocumentProjection(String[] projection) { argument
100 return projection != null ? projection : DEFAULT_DOCUMENT_PROJECTION;
112 public Cursor queryRoots(String[] projection) throws FileNotFoundException { argument
132 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
145 public Cursor queryDocument(String documentId, String[] projection) argument
150 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
224 queryChildDocuments( String parentDocumentId, String[] projection, String sortOrder) argument
295 queryRecentDocuments(String rootId, String[] projection) argument
[all...]
H A DExternalStorageProvider.java187 private static String[] resolveRootProjection(String[] projection) { argument
188 return projection != null ? projection : DEFAULT_ROOT_PROJECTION;
191 private static String[] resolveDocumentProjection(String[] projection) { argument
192 return projection != null ? projection : DEFAULT_DOCUMENT_PROJECTION;
304 public Cursor queryRoots(String[] projection) throws FileNotFoundException { argument
305 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
412 public Cursor queryDocument(String documentId, String[] projection) argument
414 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
420 queryChildDocuments( String parentDocumentId, String[] projection, String sortOrder) argument
433 querySearchDocuments(String rootId, String query, String[] projection) argument
[all...]
/frameworks/base/core/java/android/content/
H A DSearchRecentSuggestionsProvider.java319 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
358 if (projection != null && projection.length > 0) {
359 useProjection = new String[projection.length + 1];
360 System.arraycopy(projection, 0, useProjection, 0, projection.length);
361 useProjection[projection.length] = "_id AS _id";
H A DCursorLoader.java133 public CursorLoader(Context context, Uri uri, String[] projection, String selection, argument
138 mProjection = projection;
202 public void setProjection(String[] projection) { argument
203 mProjection = projection;
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledProvider.java34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DEnabledProvider.java34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
H A DTestProvider.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
H A DTestReceiver.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
/frameworks/opt/chips/src/com/android/ex/chips/
H A DQueries.java87 public Query(String[] projection, Uri contentFilter, Uri content) { argument
88 mProjection = projection;

Completed in 549 milliseconds

1234