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

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java1429 * @param conflictAlgorithm for insert conflict resolver
1431 * OR the primary key of the existing row if the input param 'conflictAlgorithm' =
1436 ContentValues initialValues, int conflictAlgorithm) {
1441 sql.append(CONFLICT_VALUES[conflictAlgorithm]);
1525 * @param conflictAlgorithm for update conflict resolver
1529 String whereClause, String[] whereArgs, int conflictAlgorithm) {
1538 sql.append(CONFLICT_VALUES[conflictAlgorithm]);
1435 insertWithOnConflict(String table, String nullColumnHack, ContentValues initialValues, int conflictAlgorithm) argument
1528 updateWithOnConflict(String table, ContentValues values, String whereClause, String[] whereArgs, int conflictAlgorithm) argument

Completed in 9 milliseconds