Searched refs:TABLE_LAST_BOOT_COUNT (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/ |
D | MtpDatabaseConstants.java | 53 static final String TABLE_LAST_BOOT_COUNT = "LastBootCount"; field in MtpDatabaseConstants 148 "CREATE TABLE " + TABLE_LAST_BOOT_COUNT + " (value INTEGER NOT NULL);";
|
D | MtpDatabase.java | 689 TABLE_LAST_BOOT_COUNT, strings(COLUMN_VALUE), null, null, null, null, null)) { in getLastBootCount() 704 mDatabase.delete(TABLE_LAST_BOOT_COUNT, null, null); in setLastBootCount() 705 mDatabase.insert(TABLE_LAST_BOOT_COUNT, null, values); in setLastBootCount() 731 db.execSQL("DROP TABLE IF EXISTS " + TABLE_LAST_BOOT_COUNT); in onUpgrade()
|