Searched refs:SETTINGS (Results 1 – 4 of 4) sorted by relevance
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | LegacyApiSupport.java | 115 private static final int SETTINGS = 44; field in LegacyApiSupport 201 public static final String SETTINGS = "v1_settings"; field 340 matcher.addURI(authority, "settings", SETTINGS); in matcher.addURI() argument 763 db.execSQL("DROP TABLE IF EXISTS " + LegacyTables.SETTINGS + ";"); in createSettingsTable() 764 db.execSQL("CREATE TABLE " + LegacyTables.SETTINGS + " (" + in createSettingsTable() 953 case SETTINGS: { in update() 1274 db.delete(LegacyTables.SETTINGS, "_sync_account IS NULL AND key=?", new String[]{key}); in updateSetting() 1276 db.delete(LegacyTables.SETTINGS, "_sync_account=? AND _sync_account_type=? AND key=?", in updateSetting() 1279 long rowId = db.insert(LegacyTables.SETTINGS, in updateSetting() 1292 " FROM " + Tables.SETTINGS + " LEFT OUTER JOIN " + LegacyTables.SETTINGS + [all …]
|
D | ContactsDatabaseHelper.java | 77 public static final String SETTINGS = "settings"; field 431 public static final String CONCRETE_ACCOUNT_NAME = Tables.SETTINGS + "." 433 public static final String CONCRETE_ACCOUNT_TYPE = Tables.SETTINGS + "." 879 db.execSQL("CREATE TABLE IF NOT EXISTS " + Tables.SETTINGS + " (" + in onCreate() 1293 db.execSQL("DROP TABLE IF EXISTS " + Tables.SETTINGS + ";"); in onUpgrade() 1433 db.execSQL("DELETE FROM " + Tables.SETTINGS + ";"); in wipeData()
|
D | ContactsProvider2.java | 198 private static final int SETTINGS = 9000; field in ContactsProvider2 461 matcher.addURI(ContactsContract.AUTHORITY, "settings", SETTINGS); in matcher.addURI() argument 2108 case SETTINGS: { in insertInTransaction() 2426 final long id = mDb.insert(Tables.SETTINGS, null, values); in insertSettings() 2719 case SETTINGS: { in deleteInTransaction() 2764 final int count = mDb.delete(Tables.SETTINGS, selection, selectionArgs); in deleteSettings() 2940 case SETTINGS: { in updateInTransaction() 3000 final int count = mDb.update(Tables.SETTINGS, values, selection, selectionArgs); in updateSettings() 3246 Tables.SETTINGS, Settings.ACCOUNT_NAME, Settings.ACCOUNT_TYPE); in onAccountsUpdated() 3274 "DELETE FROM " + Tables.SETTINGS + in onAccountsUpdated() [all …]
|
D | ContactsProvider.java | 929 case SETTINGS: in queryInternal() 2557 case SETTINGS: in updateInternal() 4151 private static final int SETTINGS = 12000; field in ContactsProvider 4376 matcher.addURI(CONTACTS_AUTHORITY, "settings", SETTINGS); in matcher.addURI() argument
|