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.java409 String[] whereArgs;
418 whereArgs = null;
425 whereArgs = new String[] { Integer.toString(parent) };
432 whereArgs = new String[] { Integer.toString(format) };
439 whereArgs = new String[] { Integer.toString(format),
450 whereArgs = new String[] { Integer.toString(storageID) };
457 whereArgs = new String[] { Integer.toString(storageID),
465 whereArgs = new String[] { Integer.toString(storageID),
473 whereArgs = new String[] { Integer.toString(storageID),
485 whereArgs
[all...]
H A DMtpPropertyGroup.java294 String[] whereArgs;
299 whereArgs = null;
301 whereArgs = new String[] { Integer.toString(handle) };
312 whereArgs = new String[] { Integer.toString(format) };
314 whereArgs = new String[] { Integer.toString(handle), Integer.toString(format) };
327 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.java1486 * @param whereArgs You may include ?s in the where clause, which
1487 * will be replaced by the values from whereArgs. The values
1493 public int delete(String table, String whereClause, String[] whereArgs) { argument
1497 (!TextUtils.isEmpty(whereClause) ? " WHERE " + whereClause : ""), whereArgs);
1516 * @param whereArgs You may include ?s in the where clause, which
1517 * will be replaced by the values from whereArgs. The values
1521 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) { argument
1522 return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);
1533 * @param whereArgs You may include ?s in the where clause, which
1534 * will be replaced by the values from whereArgs
1539 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.java896 public Cursor query(Uri url, String[] select, String where, String[] whereArgs, String sort) { argument
897 return queryForUser(url, select, where, whereArgs, sort, UserHandle.getCallingUserId());
900 private Cursor queryForUser(Uri url, String[] select, String where, String[] whereArgs, argument
903 SqlArguments args = new SqlArguments(url, where, whereArgs);
1154 public int delete(Uri url, String where, String[] whereArgs) { argument
1157 SqlArguments args = new SqlArguments(url, where, whereArgs);
1190 public int update(Uri url, ContentValues initialValues, String where, String[] whereArgs) { argument
1198 SqlArguments args = new SqlArguments(url, where, whereArgs);
/frameworks/base/media/java/android/media/
H A DMediaScanner.java1234 ArrayList<String> whereArgs = new ArrayList<String>(100); field in class:MediaScanner.MediaBulkDeleter
1250 whereArgs.add("" + id);
1251 if (whereArgs.size() > 100) {
1256 int size = whereArgs.size();
1259 foo = whereArgs.toArray(foo);
1265 whereArgs.clear();
1490 String[] whereArgs = new String[] { Integer.toString(objectHandle) };
1492 "_id=?", whereArgs);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java254 public int delete(Uri url, String where, String[] whereArgs) { argument
335 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
H A DInboundSmsHandler.java680 String[] whereArgs = {address, refNumber, count};
682 SELECT_BY_REFERENCE, whereArgs, null);
/frameworks/base/core/java/android/app/
H A DDownloadManager.java1275 String[] whereArgs = new String[ids.length];
1277 whereArgs[i] = Long.toString(ids[i]);
1279 return whereArgs;

Completed in 1584 milliseconds