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

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/storage/
H A DIdentityDatabase.java50 static final String IDENTITY_TABLE_NAME = "identity"; field in class:IdentityDatabase
134 long rowId = database.insert(IDENTITY_TABLE_NAME, null, values);
208 return database.delete(IDENTITY_TABLE_NAME, "rowId = " + identityId, null) == 1;
218 long identityDataCount = DatabaseUtils.queryNumEntries(database, IDENTITY_TABLE_NAME);
223 Cursor cursor = database.rawQuery("SELECT rowid, * FROM " + IDENTITY_TABLE_NAME + " ORDER BY "

Completed in 21 milliseconds