Searched refs:whereArgs (Results 1 - 15 of 15) 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.java419 String[] whereArgs;
428 whereArgs = null;
435 whereArgs = new String[] { Integer.toString(parent) };
442 whereArgs = new String[] { Integer.toString(format) };
449 whereArgs = new String[] { Integer.toString(format),
460 whereArgs = new String[] { Integer.toString(storageID) };
467 whereArgs = new String[] { Integer.toString(storageID),
475 whereArgs = new String[] { Integer.toString(storageID),
483 whereArgs = new String[] { Integer.toString(storageID),
495 whereArgs
[all...]
H A DMtpPropertyGroup.java303 String[] whereArgs;
308 whereArgs = null;
310 whereArgs = new String[] { Integer.toString(handle) };
321 whereArgs = new String[] { Integer.toString(format) };
323 whereArgs = new String[] { Integer.toString(handle), Integer.toString(format) };
336 c = mProvider.query(mUri, mColumns, where, whereArgs, null, null);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java306 public int delete(Uri uri, String where, String[] whereArgs) { argument
315 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
326 count = db.delete(MainTable.TABLE_NAME, finalWhere, whereArgs);
342 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { argument
350 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
358 count = db.update(MainTable.TABLE_NAME, values, finalWhere, whereArgs);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java306 public int delete(Uri uri, String where, String[] whereArgs) { argument
315 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
326 count = db.delete(MainTable.TABLE_NAME, finalWhere, whereArgs);
342 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { argument
350 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
358 count = db.update(MainTable.TABLE_NAME, values, finalWhere, whereArgs);
/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.java1489 * @param whereArgs You may include ?s in the where clause, which
1490 * will be replaced by the values from whereArgs. The values
1496 public int delete(String table, String whereClause, String[] whereArgs) { argument
1500 (!TextUtils.isEmpty(whereClause) ? " WHERE " + whereClause : ""), whereArgs);
1519 * @param whereArgs You may include ?s in the where clause, which
1520 * will be replaced by the values from whereArgs. The values
1524 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) { argument
1525 return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);
1536 * @param whereArgs You may include ?s in the where clause, which
1537 * will be replaced by the values from whereArgs
1542 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.java317 public Cursor query(Uri uri, String[] projection, String where, String[] whereArgs, argument
323 Arguments args = new Arguments(uri, where, whereArgs, true);
433 public int delete(Uri uri, String where, String[] whereArgs) { argument
438 Arguments args = new Arguments(uri, where, whereArgs, false);
472 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { argument
477 Arguments args = new Arguments(uri, where, whereArgs, false);
1570 public Arguments(Uri uri, String where, String[] whereArgs, boolean supportAll) { argument
1577 && whereArgs.length == 1) {
1578 name = whereArgs[0];
1591 } else if (supportAll && where == null && whereArgs
[all...]
/frameworks/base/media/java/android/media/
H A DMediaScanner.java1335 ArrayList<String> whereArgs = new ArrayList<String>(100); field in class:MediaScanner.MediaBulkDeleter
1349 whereArgs.add("" + id);
1350 if (whereArgs.size() > 100) {
1355 int size = whereArgs.size();
1358 foo = whereArgs.toArray(foo);
1364 whereArgs.clear();
1565 String[] whereArgs = new String[] { Integer.toString(objectHandle) };
1567 "_id=?", whereArgs);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java258 public int delete(Uri url, String where, String[] whereArgs) { argument
339 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
H A DInboundSmsHandler.java761 String[] whereArgs = {address, refNumber, count};
763 SELECT_BY_REFERENCE, whereArgs, null);
/frameworks/base/core/java/android/app/
H A DDownloadManager.java1452 String[] whereArgs = new String[ids.length];
1454 whereArgs[i] = Long.toString(ids[i]);
1456 return whereArgs;

Completed in 336 milliseconds