Searched refs:lastSentDayIndex (Results 1 – 3 of 3) sorted by relevance
48 abstract Optional<Integer> lastSentDayIndex(); in lastSentDayIndex() method in ReportEntity56 static ReportEntity create(ReportKey reportKey, Optional<Integer> lastSentDayIndex) { in create() argument57 return new AutoValue_ReportEntity(reportKey, lastSentDayIndex); in create()78 static ReportEntity create(ReportKey reportKey, int lastSentDayIndex) { in create() argument79 return new AutoValue_ReportEntity(reportKey, Optional.of(lastSentDayIndex)); in create()
496 Optional<Integer> lastSentDayIndex = mDaoBuildingBlocks.queryLastSentDayIndex(reportKey); in nextDayIndexToAggregate() local498 if (!lastSentDayIndex.isPresent()) { in nextDayIndexToAggregate()506 Integer nextDayIndex = lastSentDayIndex.orElse(mostRecentDayIndex); in nextDayIndexToAggregate()
95 int lastSentDayIndex) { in insertSystemProfileAndReport() argument98 mDaoBuildingBlocks.insertLastSentDayIndex(ReportEntity.create(reportKey, lastSentDayIndex)); in insertSystemProfileAndReport()