Searched refs:projection (Results 1 - 25 of 76) 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;
48 public static final String EXTRA_APP_TOKEN = "android.media.projection.extra.EXTRA_APP_TOKEN";
51 "android.media.projection.extra.EXTRA_MEDIA_PROJECTION";
99 IBinder projection = resultData.getIBinderExtra(EXTRA_MEDIA_PROJECTION);
100 if (projection == null) {
103 return new MediaProjection(mContext, IMediaProjection.Stub.asInterface(projection));
114 Log.e(TAG, "Unable to get the active projection info", e);
120 * Stop the current projection if there is one.
127 Log.e(TAG, "Unable to stop the currently active media projection",
[all...]
/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/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;
113 private void startProjectionLocked(final MediaProjection projection) { argument
120 mProjectionToken = projection.asBinder();
121 mProjectionGrant = projection;
125 stopProjectionLocked(final MediaProjection projection) argument
172 dispatchStart(MediaProjection projection) argument
176 dispatchStop(MediaProjection projection) argument
254 isValidMediaProjection(IMediaProjection projection) argument
531 dispatchStart(MediaProjection projection) argument
545 dispatchStop(MediaProjection projection) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DSearchIndexablesProvider.java104 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
123 * @param projection list of {@link android.provider.SearchIndexablesContract.XmlResource}
127 public abstract Cursor queryXmlResources(String[] projection); argument
134 * @param projection list of {@link android.provider.SearchIndexablesContract.RawData} columns
138 public abstract Cursor queryRawData(String[] projection); argument
145 * @param projection list of {@link android.provider.SearchIndexablesContract.NonIndexableKey}
149 public abstract Cursor queryNonIndexableKeys(String[] projection); argument
H A DDocumentsProvider.java273 * @param projection list of {@link Root} columns to put into the cursor. If
276 public abstract Cursor queryRoots(String[] projection) throws FileNotFoundException; argument
287 * @param projection list of {@link Document} columns to put into the
293 public Cursor queryRecentDocuments(String rootId, String[] projection) argument
303 * @param projection list of {@link Document} columns to put into the
307 public abstract Cursor queryDocument(String documentId, String[] projection) argument
332 * @param projection list of {@link Document} columns to put into the
346 String parentDocumentId, String[] projection, String sortOrder)
352 String parentDocumentId, String[] projection, String sortOrder)
384 * @param projection lis
345 queryChildDocuments( String parentDocumentId, String[] projection, String sortOrder) argument
351 queryChildDocumentsForManage( String parentDocumentId, String[] projection, String sortOrder) argument
392 querySearchDocuments(String rootId, String query, String[] projection) argument
475 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.java180 private static String[] resolveRootProjection(String[] projection) { argument
181 return projection != null ? projection : DEFAULT_ROOT_PROJECTION;
184 private static String[] resolveDocumentProjection(String[] projection) { argument
185 return projection != null ? projection : DEFAULT_DOCUMENT_PROJECTION;
285 public Cursor queryRoots(String[] projection) throws FileNotFoundException { argument
286 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
439 public Cursor queryDocument(String documentId, String[] projection) argument
441 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
447 queryChildDocuments( String parentDocumentId, String[] projection, String sortOrder) argument
460 querySearchDocuments(String rootId, String query, String[] projection) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DMediaProjectionPermissionActivity.java27 import android.media.projection.MediaProjectionManager;
28 import android.media.projection.IMediaProjectionManager;
29 import android.media.projection.IMediaProjection;
90 Log.e(TAG, "Error checking projection permissions", e);
130 Log.e(TAG, "Error granting projection permission", e);
147 IMediaProjection projection = mService.createProjection(uid, packageName,
150 intent.putExtra(MediaProjectionManager.EXTRA_MEDIA_PROJECTION, projection.asBinder());
/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;
H A DAsyncQueryHandler.java51 public String[] projection; field in class:AsyncQueryHandler.WorkerArgs
79 cursor = resolver.query(args.uri, args.projection,
151 * @param projection A list of which columns to return. Passing null will
165 String[] projection, String selection, String[] selectionArgs,
174 args.projection = projection;
164 startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[] selectionArgs, String orderBy) argument
/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/support/v4/java/android/support/v4/content/
H A DCursorLoader.java97 public CursorLoader(Context context, Uri uri, String[] projection, String selection, argument
102 mProjection = projection;
166 public void setProjection(String[] projection) { argument
167 mProjection = projection;
/frameworks/opt/chips/src/com/android/ex/chips/
H A DQueries.java87 public Query(String[] projection, Uri contentFilter, Uri content) { argument
88 mProjection = projection;
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQueryBuilder.java125 * Sets the projection map for the query. The projection map maps
129 * could map "name" to "people.name". If a projection map is set
154 * non-numeric limits will raise an exception. If a projection map is specified, fields
166 * <li>Use a projection map</li>
447 String[] projection = computeProjection(projectionIn);
469 mDistinct, mTables, projection, where.toString(),
613 String[] projection = new String[projectionIn.length];
621 projection[i] = column;
628 projection[
[all...]

Completed in 1094 milliseconds

1234