Searched refs:TABLE_SELECTABLE (Results 1 – 2 of 2) sorted by relevance
/packages/apps/KeyChain/src/com/android/keychain/internal/ |
D | GrantsDatabase.java | 63 private static final String TABLE_SELECTABLE = "userselectable"; field in GrantsDatabase 66 "SELECT COUNT(*) FROM " + TABLE_SELECTABLE + " WHERE " + GRANTS_ALIAS + "=?"; 83 + TABLE_SELECTABLE in createSelectableTable() 130 db.replace(TABLE_SELECTABLE, null, values); in markKeyAsSelectable() 220 db.delete(TABLE_SELECTABLE, SELECTION_GRANTS_BY_ALIAS, new String[] {alias}); in removeAliasInformation() 226 db.delete(TABLE_SELECTABLE, null /* whereClause */, null /* whereArgs */); in removeAllAliasesInformation() 261 db.replace(TABLE_SELECTABLE, null, values); in setIsUserSelectable() 268 TABLE_SELECTABLE, in isUserSelectable()
|
/packages/apps/KeyChain/robotests/src/com/android/keychain/internal/ |
D | GrantsDatabaseTest.java | 52 private static final String TABLE_SELECTABLE = "userselectable"; field in GrantsDatabaseTest 189 + TABLE_SELECTABLE 238 db.insert(TABLE_SELECTABLE, null, values);
|