Home
last modified time | relevance | path

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

/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
DBugStorageUtils.java26 import static com.android.car.bugreport.BugStorageProvider.COLUMN_TTL_POINTS;
230 selection += " AND " + COLUMN_TTL_POINTS + " = 0"; in getUnexpiredBugReportsWithZipFile()
232 selection += " AND " + COLUMN_TTL_POINTS + " > 0"; in getUnexpiredBugReportsWithZipFile()
270 COLUMN_TTL_POINTS}; in getBugreports()
290 .setTtlPoints(getInt(c, COLUMN_TTL_POINTS)) in getBugreports()
DTtlPointsDecremental.java20 import static com.android.car.bugreport.BugStorageProvider.COLUMN_TTL_POINTS;
58 values.put(COLUMN_TTL_POINTS, bugReport.getTtlPoints() - 1); in run()
DBugStorageProvider.java122 static final String COLUMN_TTL_POINTS = "ttl_points"; field in BugStorageProvider
166 + COLUMN_TTL_POINTS + " INTEGER DEFAULT " + DEFAULT_TTL_POINTS
193 + COLUMN_TTL_POINTS + " INTEGER DEFAULT " + DEFAULT_TTL_POINTS); in onUpgrade()
/packages/services/Car/tests/BugReportApp/tests/src/com/android/car/bugreport/
DTtlPointsDecrementalTest.java109 values.put(BugStorageProvider.COLUMN_TTL_POINTS, ttlPoints); in createBugReport()
DBugStorageUtilsTest.java193 values.put(BugStorageProvider.COLUMN_TTL_POINTS, ttlPoints); in createBugReport()