Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/attribution/
DAttributionJobHandlerTest.java547 verify(mMeasurementDao, never()).insertAggregateReport(any()); in shouldNotAddIfRateLimitExceeded_eventScopeOnly()
579 verify(mMeasurementDao, never()).insertAggregateReport(any()); in shouldNotAddIfRateLimitExceeded_aggregateScopeOnly()
609 verify(mMeasurementDao, times(1)).insertAggregateReport(any()); in shouldNotAddIfRateLimitExceeded_aggregateAndEventScope_eventLimited()
645 verify(mMeasurementDao, never()).insertAggregateReport(any()); in shouldNotAddIfRateLimitExceeded_aggregateAndEventScope_aggregateLimited()
887 verify(mMeasurementDao, never()).insertAggregateReport(any()); in shouldIgnoreIfNoSourcesFound_includeSourceRegistrationTime_dontTriggerNullReports()
1003 verify(mMeasurementDao).insertAggregateReport(aggregateReportCaptor.capture()); in performPendingAttributions_generatesAggregateReport_excludeSourceRegistrationTime()
1087 verify(mMeasurementDao).insertAggregateReport(aggregateReportCaptor.capture()); in performPendingAttributions_generatesAggregateReport_excludeSourceRegistrationTime_includeContextId()
1209 verify(mMeasurementDao, times(1)).insertAggregateReport(aggregateReportCaptor.capture()); in shouldDoSimpleAttribution_excludeSourceRegistrationTime_noNullReports()
1253 .insertAggregateReport(aggregateReportCaptor.capture()); in captureAndAssertNullAggregateReportsWithRealReport()
1354 .insertAggregateReport(aggregateReportCaptor.capture()); in shouldDoSimpleAttributionWithNullReports_triggerOnLastPossibleDay()
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DIMeasurementDao.java478 void insertAggregateReport(AggregateReport payload) throws DatastoreException; in insertAggregateReport() method
DMeasurementDao.java2623 public void insertAggregateReport(AggregateReport aggregateReport) throws DatastoreException {
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/attribution/
DAttributionJobHandler.java653 measurementDao.insertAggregateReport(nullReport); in generateNullAggregateReportExcludingSourceRegistrationTime()
677 measurementDao.insertAggregateReport(nullReport); in generateNullAggregateReportsIncludingSourceRegistrationTime()
1394 measurementDao.insertAggregateReport(aggregateReport); in finalizeAggregateReportCreation()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/
DMeasurementDaoTest.java4640 (dao) -> dao.insertAggregateReport(validAggregateReport)); in testInsertAggregateReport()
4667 (dao) -> dao.insertAggregateReport(aggregateReportWithNullSourceRegistrationTime)); in testInsertAggregateReport_withNullSourceRegistrationTime()
6305 dao.insertAggregateReport(agg1); in deletePendingAggregateReportsAndAttributionsForSources_success()
6318 dao.insertAggregateReport(agg2); in deletePendingAggregateReportsAndAttributionsForSources_success()
6332 dao.insertAggregateReport(agg3); in deletePendingAggregateReportsAndAttributionsForSources_success()
7175 (dao) -> dao.insertAggregateReport(report))); in fetchMatchingAggregateReports_returnsMatchingReports()