Home
last modified time | relevance | path

Searched refs:TABLE_DEBUG (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/accounts/
DAccountsDb.java100 private static String TABLE_DEBUG = "debug_table"; field in AccountsDb
259 db.execSQL("DROP TABLE IF EXISTS " + TABLE_DEBUG); in onUpgrade()
580 db.execSQL("CREATE TABLE " + TABLE_DEBUG + " ( " in createDebugTable()
587 db.execSQL("CREATE INDEX timestamp_index ON " + TABLE_DEBUG + " (" in createDebugTable()
672 db.execSQL("INSERT INTO " + TABLE_DEBUG in migratePreNDbToDe()
679 + " FROM preNDb." + TABLE_DEBUG); in migratePreNDbToDe()
1303 String queryCountDebugDbRows = "SELECT COUNT(*) FROM " + TABLE_DEBUG; in calculateDebugTableInsertionPoint()
1313 + " FROM " + TABLE_DEBUG in calculateDebugTableInsertionPoint()
1326 String sql = "INSERT OR REPLACE INTO " + AccountsDb.TABLE_DEBUG in compileSqlStatementForLogging()
1368 Cursor cursor = db.query(TABLE_DEBUG, null, in dumpDebugTable()