Searched defs:whereArgs (Results 1 - 7 of 7) sorted by relevance

/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/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/telephony/java/com/android/internal/telephony/
H A DIccProvider.java177 public int delete(Uri url, String where, String[] whereArgs) { argument
249 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java396 public Cursor query(Uri url, String[] select, String where, String[] whereArgs, String sort) { argument
397 SqlArguments args = new SqlArguments(url, where, whereArgs);
576 public int delete(Uri url, String where, String[] whereArgs) { argument
577 SqlArguments args = new SqlArguments(url, where, whereArgs);
599 public int update(Uri url, ContentValues initialValues, String where, String[] whereArgs) { argument
600 SqlArguments args = new SqlArguments(url, where, whereArgs);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1737 public int delete(String table, String whereClause, String[] whereArgs) { argument
1739 (!TextUtils.isEmpty(whereClause) ? " WHERE " + whereClause : ""), whereArgs);
1760 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) { argument
1761 return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);
1776 String whereClause, String[] whereArgs, int conflictAlgorithm) {
1789 int bindArgsSize = (whereArgs == null) ? setValuesSize : (setValuesSize + whereArgs.length);
1798 if (whereArgs != null) {
1800 bindArgs[i] = whereArgs[i - setValuesSize];
1775 updateWithOnConflict(String table, ContentValues values, String whereClause, String[] whereArgs, int conflictAlgorithm) argument

Completed in 121 milliseconds