Searched refs:query (Results 151 - 175 of 196) sorted by relevance

12345678

/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java528 Cursor c = db.query(
879 cursor = db.query(table, COLUMN_VALUE, "name=?", new String[]{key},
896 public Cursor query(Uri url, String[] select, String where, String[] whereArgs, String sort) { method in class:SettingsProvider
902 if (LOCAL_LOGV) Slog.v(TAG, "query(" + url + ") for user " + forUser);
910 // Home still need to query this table to upgrade from pre-cupcake builds
913 // let the caller of the query have a chance to recover and avoid the exception
931 Cursor ret = qb.query(db, select, args.where, args.args, null, null, sort);
H A DSettingsBackupAgent.java610 Cursor cursor = getContentResolver().query(Settings.System.CONTENT_URI, PROJECTION, null,
620 Cursor cursor = getContentResolver().query(Settings.Secure.CONTENT_URI, PROJECTION, null,
630 Cursor cursor = getContentResolver().query(Settings.Global.CONTENT_URI, PROJECTION, null,
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DVCardVerifier.java350 final Cursor cursor = resolver.query(CONTACTS_TEST_CONTENT_URI, null, null, null, null);
/frameworks/native/libs/gui/tests/
H A DSurfaceTextureClient_test.cpp130 int err = mANW->query(mANW.get(), NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER,
138 int err = mANW->query(mANW.get(), NATIVE_WINDOW_CONCRETE_TYPE, &result);
672 ASSERT_EQ(OK, anw->query(anw.get(), NATIVE_WINDOW_FORMAT, &fmt));
H A DBufferQueue_test.cpp56 ASSERT_EQ(OK, mProducer->query(NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS,
/frameworks/base/core/java/android/provider/
H A DContactsContract.java139 * A query parameter that limits the number of results returned. The
145 * A query parameter specifing a primary account. This parameter should be used with
146 * {@link #PRIMARY_ACCOUNT_TYPE}. The contacts provider handling a query may rely on
147 * this information to optimize its query results.
157 * A query parameter specifing a primary account. This parameter should be used with
204 * caller to execute the query without having the special permissions that would normally
274 * optional {@code directory=} query parameter.
340 * query to each of the directory authorities. A directory provider must implement
341 * this query and return a list of directories. Each directory returned by
344 * automatically, the _ID field will not be part of the query projectio
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java360 Cursor c = SqliteWrapper.query(mContext, mContentResolver,
485 Cursor c = SqliteWrapper.query(mContext, mContentResolver,
554 Cursor c = SqliteWrapper.query(mContext, mContentResolver, uri,
946 cursor = context.getContentResolver().query(uri, projection, null,
1577 return SqliteWrapper.query(mContext, mContentResolver,
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java340 final Cursor cursor = db.query(TABLE_GRANTS,
392 Cursor cursor = db.query(TABLE_ACCOUNTS,
525 Cursor cursor = db.query(TABLE_ACCOUNTS, new String[]{ACCOUNTS_PASSWORD},
564 Cursor cursor = db.query(
2293 .query(TABLE_SHARED_ACCOUNTS, new String[]{ACCOUNTS_NAME, ACCOUNTS_TYPE},
2377 Cursor cursor = db.query(TABLE_ACCOUNTS, new String[]{ACCOUNTS_ID},
2390 Cursor cursor = db.query(TABLE_EXTRAS, new String[]{EXTRAS_ID},
2925 Cursor cursor = db.query(TABLE_ACCOUNTS, ACCOUNT_TYPE_COUNT_PROJECTION,
3453 Cursor cursor = db.query(TABLE_EXTRAS,
3473 Cursor cursor = db.query(TABLE_AUTHTOKEN
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java302 .query(RecentsProvider.buildResume(packageName), null, null, null, null);
480 public boolean onQueryTextSubmit(String query) {
482 mState.currentSearch = query;
H A DRootsCache.java213 // Ignore stopped packages for now; we might query them
241 * Bring up requested provider and query for all active roots.
261 cursor = client.query(rootsUri, null, null, null, null);
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java263 final Cursor cursor = provider.query(mUri, projection, mSelection, selectionArgs, null);
H A DContentProviderNative.java112 Cursor cursor = query(callingPkg, url, projection, selection, selectionArgs,
385 public Cursor query(String callingPkg, Uri url, String[] projection, String selection, method in class:ContentProviderProxy
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp172 anw->query(anw, NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND, &value);
/frameworks/base/packages/WAPPushManager/src/com/android/smspush/
H A DWapPushManager.java123 Cursor cur = db.query(APPID_TABLE_NAME,
/frameworks/base/services/core/java/com/android/server/notification/
H A DValidateNotificationPeople.java338 c = context.getContentResolver().query(lookupUri, LOOKUP_PROJECTION, null, null, null);
340 Slog.w(TAG, "Null cursor from contacts query.");
347 Slog.w(TAG, "Problem getting content resolver or performing contacts query.", t);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfo.java288 .query(contactRef, null, null, null, null));
327 // shortcut and skip the query.
340 // if no query results were returned with a viable number,
341 // fill in the original number value we used to query with.
354 * @param context the query context
463 * depends on what query we originally ran.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java87 public Cursor query(Uri url, String[] projection, String selection, method in class:IccProvider
89 if (DBG) log("query");
H A DIccSmsInterfaceManager.java982 // Clear the calling identity and query the database using the phone user id
988 cursor = resolver.query(
1000 Log.e(LOG_TAG, "[IccSmsInterfaceManager]isFailedOrDraft: query message type failed", e);
1012 // Clear the calling identity and query the database using the phone user id
1018 cursor = resolver.query(
1031 Log.e(LOG_TAG, "[IccSmsInterfaceManager]loadText: query message text failed", e);
H A DInboundSmsHandler.java674 // used by several query selection arguments
679 // query for all segments and broadcast message if we have all the parts
681 cursor = mResolver.query(sRawUri, PDU_SEQUENCE_PORT_PROJECTION,
874 // convert to strings for query
886 cursor = mResolver.query(sRawUri, PDU_PROJECTION,
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java390 * {@link ContentProvider#query(Uri, String[], String, String[], String)
391 * ContentProvider.query()}.
399 * the <i>selection</i> parameter. The <i>query</i> method scans <i>selection</i> from left to
405 * @return A {@link Cursor} containing the results of the query.
409 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:FileProvider
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java1223 for (MarshalQueryable query : queryList) {
1224 MarshalRegistry.registerMarshalQueryable(query);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java229 Log.w(TAG, "null cursor returned for default Email filter query.");
327 final Cursor directoryCursor = mContentResolver.query(
394 " with query " + constraint);
550 Log.e(TAG, "Unsupported query type: " + queryMode);
596 * @param inAddresses addresses to query
851 final Cursor cursor = mContentResolver.query(
855 Log.d(TAG, "Time for autocomplete (query: " + constraint
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java1042 * P2P_SERVICE_ADD bonjour <query hexdump> <RDATA hexdump>
1073 * P2P_SERVICE_DEL bonjour <query hexdump>
1102 public String p2pServDiscReq(String addr, String query) { argument
1105 command += (" " + query);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewController.java131 /** The query projection to use; may be {@code null} */
241 // projection for the query; optional
517 // Clear query params. Compare only the path.
525 .query(null).build();
535 uri = Uri.parse(uriString).buildUpon().query(null).build();
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java2971 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
2972 return chooseBestActivity(intent, resolvedType, flags, query, userId);
2989 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
2992 flags, query, 0, false, true, false, userId);
3002 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
3003 return findPreferredActivity(intent, resolvedType, flags, query, 0,
3008 int flags, List<ResolveInfo> query, int userId) {
3009 if (query != null) {
3010 final int N = query.size();
3012 return query
3007 chooseBestActivity(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, int userId) argument
3052 findPersistentPreferredActivityLP(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, boolean debug, int userId) argument
3109 findPreferredActivity(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, int priority, boolean always, boolean removeMatches, boolean debug, int userId) argument
[all...]

Completed in 881 milliseconds

12345678