Home
last modified time | relevance | path

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

/packages/services/Car/tests/BugReportApp/tests/src/com/google/android/car/bugreport/
DBugStorageUtilsTest.java18 import static com.android.car.bugreport.MetaBugReport.TYPE_INTERACTIVE;
59 STATUS_PENDING_USER_ACTION, TYPE_INTERACTIVE, /* createBugReportFile= */ true); in test_createBugReport_createsAndReturnsMetaBugReport()
67 STATUS_PENDING_USER_ACTION, TYPE_INTERACTIVE, /* createBugReportFile= */ true); in test_expireBugReport_marksBugReportDeletedAndDeletesZip()
87 STATUS_PENDING_USER_ACTION, TYPE_INTERACTIVE, /* createBugReportFile= */ true); in test_completeDeleteBugReport_removesBugReportRecordFromDb()
/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
DMetaBugReport.java39 static final int TYPE_INTERACTIVE = 0; field in MetaBugReport
49 @IntDef({TYPE_INTERACTIVE, TYPE_SILENT})
DBugStorageProvider.java149 + COLUMN_TYPE + " INTEGER DEFAULT " + MetaBugReport.TYPE_INTERACTIVE + ","
168 + COLUMN_TYPE + " INTEGER DEFAULT " + MetaBugReport.TYPE_INTERACTIVE); in onUpgrade()
DBugReportActivity.java381 MetaBugReport bug = createBugReport(this, MetaBugReport.TYPE_INTERACTIVE); in createNewBugReportWithAudioMessage()