Home
last modified time | relevance | path

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

/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
DBugStorageProvider.java62 private static final String BUG_REPORTS_TABLE = "bugreports"; field in BugStorageProvider
106 Uri.parse("content://" + AUTHORITY + "/" + BUG_REPORTS_TABLE);
154 private static final String CREATE_TABLE = "CREATE TABLE " + BUG_REPORTS_TABLE + " ("
182 db.execSQL("ALTER TABLE " + BUG_REPORTS_TABLE + " ADD COLUMN " in onUpgrade()
186 db.execSQL("ALTER TABLE " + BUG_REPORTS_TABLE + " ADD COLUMN " in onUpgrade()
188 db.execSQL("ALTER TABLE " + BUG_REPORTS_TABLE + " ADD COLUMN " in onUpgrade()
192 db.execSQL("ALTER TABLE " + BUG_REPORTS_TABLE + " ADD COLUMN " in onUpgrade()
203 return Uri.parse("content://" + AUTHORITY + "/" + BUG_REPORTS_TABLE + "/" in buildUriWithSegment()
209 mUriMatcher.addURI(AUTHORITY, BUG_REPORTS_TABLE, URL_MATCHED_BUG_REPORTS_URI); in BugStorageProvider()
210 mUriMatcher.addURI(AUTHORITY, BUG_REPORTS_TABLE + "/#", URL_MATCHED_BUG_REPORT_ID_URI); in BugStorageProvider()
[all …]