Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogStorage.java888 public static final String COLUMN_NUM_TIMES_KILLED = "num_times_killed"; field in WatchdogStorage.IoUsageStatsTable
913 .append(COLUMN_NUM_TIMES_KILLED).append(" INTEGER NOT NULL, ") in createTable()
943 values.put(COLUMN_NUM_TIMES_KILLED, entry.ioUsage.getTotalTimesKilled()); in getContentValues()
972 .append("SUM(").append(COLUMN_NUM_TIMES_KILLED).append("), ") in queryStats()
1025 .append("SUM(").append(COLUMN_NUM_TIMES_KILLED).append("), ") in queryIoOveruseStatsForUserPackageId()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DWatchdogStorageUnitTest.java29 import static com.android.car.watchdog.WatchdogStorage.IoUsageStatsTable.COLUMN_NUM_TIMES_KILLED;
1115 ioUsageStatsContentValues.put(COLUMN_NUM_TIMES_KILLED, timesKilled); in insertIoUsageStats()