Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/libraries/cobalt/java/com/android/cobalt/data/
DReportEntity.java48 abstract Optional<Integer> lastSentDayIndex(); in lastSentDayIndex() method in ReportEntity
56 static ReportEntity create(ReportKey reportKey, Optional<Integer> lastSentDayIndex) { in create() argument
57 return new AutoValue_ReportEntity(reportKey, lastSentDayIndex); in create()
78 static ReportEntity create(ReportKey reportKey, int lastSentDayIndex) { in create() argument
79 return new AutoValue_ReportEntity(reportKey, Optional.of(lastSentDayIndex)); in create()
DDataService.java496 Optional<Integer> lastSentDayIndex = mDaoBuildingBlocks.queryLastSentDayIndex(reportKey); in nextDayIndexToAggregate() local
498 if (!lastSentDayIndex.isPresent()) { in nextDayIndexToAggregate()
506 Integer nextDayIndex = lastSentDayIndex.orElse(mostRecentDayIndex); in nextDayIndexToAggregate()
/packages/modules/AdServices/adservices/libraries/cobalt/tests/src/com/android/cobalt/data/
DDaoBuildingBlocksTest.java95 int lastSentDayIndex) { in insertSystemProfileAndReport() argument
98 mDaoBuildingBlocks.insertLastSentDayIndex(ReportEntity.create(reportKey, lastSentDayIndex)); in insertSystemProfileAndReport()