Searched refs:whereArgs (Results 1 - 13 of 13) sorted by relevance

/frameworks/ex/common/java/com/android/common/contacts/
H A DDataUsageStatUpdater.java110 final ArrayList<String> whereArgs = new ArrayList<String>();
114 whereArgs.addAll(addresses);
122 whereArgs.toArray(new String[0]), null);
160 final ArrayList<String> whereArgs = new ArrayList<String>();
164 whereArgs.addAll(numbers);
172 whereArgs.toArray(new String[0]), null);
231 final ArrayList<String> whereArgs = new ArrayList<String>();
234 whereArgs.add(String.valueOf(contactId));
243 Log.d(TAG, "contactId selection: " + whereArgs);
249 whereBuilder.toString(), whereArgs
[all...]
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java97 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
107 public int delete(Uri url, String where, String[] whereArgs) { argument
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java344 String[] whereArgs;
353 whereArgs = null;
360 whereArgs = new String[] { Integer.toString(parent) };
367 whereArgs = new String[] { Integer.toString(format) };
374 whereArgs = new String[] { Integer.toString(format),
385 whereArgs = new String[] { Integer.toString(storageID) };
392 whereArgs = new String[] { Integer.toString(storageID),
400 whereArgs = new String[] { Integer.toString(storageID),
408 whereArgs = new String[] { Integer.toString(storageID),
420 whereArgs
[all...]
H A DMtpPropertyGroup.java295 String[] whereArgs;
300 whereArgs = null;
302 whereArgs = new String[] { Integer.toString(handle) };
313 whereArgs = new String[] { Integer.toString(format) };
315 whereArgs = new String[] { Integer.toString(handle), Integer.toString(format) };
328 c = mProvider.query(mPackageName, mUri, mColumns, where, whereArgs, null, null);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java130 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
159 public int delete(Uri url, String where, String[] whereArgs) { argument
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java163 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
173 public int delete(Uri url, String where, String[] whereArgs) { argument
/frameworks/ex/common/java/com/android/common/content/
H A DSyncStateContentProviderHelper.java91 public int delete(SQLiteDatabase db, String userWhere, String[] whereArgs) { argument
92 return db.delete(SYNC_STATE_TABLE, userWhere, whereArgs);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1484 * @param whereArgs You may include ?s in the where clause, which
1485 * will be replaced by the values from whereArgs. The values
1491 public int delete(String table, String whereClause, String[] whereArgs) { argument
1495 (!TextUtils.isEmpty(whereClause) ? " WHERE " + whereClause : ""), whereArgs);
1514 * @param whereArgs You may include ?s in the where clause, which
1515 * will be replaced by the values from whereArgs. The values
1519 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) { argument
1520 return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);
1531 * @param whereArgs You may include ?s in the where clause, which
1532 * will be replaced by the values from whereArgs
1537 updateWithOnConflict(String table, ContentValues values, String whereClause, String[] whereArgs, int conflictAlgorithm) argument
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java705 public Cursor query(Uri url, String[] select, String where, String[] whereArgs, String sort) { argument
706 return queryForUser(url, select, where, whereArgs, sort, UserHandle.getCallingUserId());
709 private Cursor queryForUser(Uri url, String[] select, String where, String[] whereArgs, argument
712 SqlArguments args = new SqlArguments(url, where, whereArgs);
946 public int delete(Uri url, String where, String[] whereArgs) { argument
949 SqlArguments args = new SqlArguments(url, where, whereArgs);
975 public int update(Uri url, ContentValues initialValues, String where, String[] whereArgs) { argument
983 SqlArguments args = new SqlArguments(url, where, whereArgs);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java177 public int delete(Uri url, String where, String[] whereArgs) { argument
244 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
H A DInboundSmsHandler.java607 String[] whereArgs = {address, refNumber, count};
609 SELECT_BY_REFERENCE, whereArgs, null);
/frameworks/base/media/java/android/media/
H A DMediaScanner.java1232 ArrayList<String> whereArgs = new ArrayList<String>(100); field in class:MediaScanner.MediaBulkDeleter
1248 whereArgs.add("" + id);
1249 if (whereArgs.size() > 100) {
1254 int size = whereArgs.size();
1257 foo = whereArgs.toArray(foo);
1263 whereArgs.clear();
1443 String[] whereArgs = new String[] { Integer.toString(objectHandle) };
1445 "_id=?", whereArgs);
/frameworks/base/core/java/android/app/
H A DDownloadManager.java1279 String[] whereArgs = new String[ids.length];
1281 whereArgs[i] = Long.toString(ids[i]);
1283 return whereArgs;

Completed in 396 milliseconds