Home | History | Annotate | Download | only in downloads

Lines Matching defs:where

195      * This class encapsulates a SQL where clause and its parameters.  It makes it possible for
536 " WHERE " + Downloads.Impl._ID + " = ?",
1074 String where = Downloads.Impl.RequestHeaders.COLUMN_DOWNLOAD_ID + "="
1078 return db.query(Downloads.Impl.RequestHeaders.HEADERS_DB_TABLE, projection, where,
1085 private void deleteRequestHeaders(SQLiteDatabase db, String where, String[] whereArgs) {
1087 Cursor cursor = db.query(DB_TABLE, projection, where, whereArgs, null, null, null, null);
1114 final String where, final String[] whereArgs) {
1116 Helpers.validateSelection(where, sAppReadableColumnsSet);
1181 final SqlSelection selection = getWhereClause(uri, where, whereArgs, match);
1233 private SqlSelection getWhereClause(final Uri uri, final String where, final String[] whereArgs,
1236 selection.appendClause(where, whereArgs);
1255 public int delete(final Uri uri, final String where, final String[] whereArgs) {
1257 Helpers.validateSelection(where, sAppReadableColumnsSet);
1272 final SqlSelection selection = getWhereClause(uri, where, whereArgs, match);