Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/reporting/
DDebugReportApiTest.java122 verify(mMeasurementDao, times(1)).insertDebugReport(captor.capture()); in testScheduleAppToAppSourceSuccessDebugReport_success()
152 verify(mMeasurementDao, times(1)).insertDebugReport(captor.capture()); in testScheduleWebToWebSourceSuccessDebugReport_success()
182 verify(mMeasurementDao, times(1)).insertDebugReport(captor.capture()); in testScheduleAppToWebSourceSuccessDebugReport_success()
214 verify(mMeasurementDao, times(1)).insertDebugReport(captor.capture()); in testScheduleWebToAppSourceSuccessDebugReport_success()
246 verify(mMeasurementDao, times(1)).insertDebugReport(captor.capture()); in testScheduleAppToAppAndWebSourceSuccessDebugReport_success()
286 verify(mMeasurementDao, times(1)).insertDebugReport(captor.capture()); in testScheduleWebToAppAndWebSourceSuccessDebugReport_success()
325 verify(mMeasurementDao, never()).insertDebugReport(any()); in testScheduleSourceSuccessDebugReport_debugFlagDisabled_dontSchedule()
348 verify(mMeasurementDao, never()).insertDebugReport(any()); in testScheduleSourceSuccessDebugReport_sourceFlagDisabled_dontSchedule()
368 verify(mMeasurementDao, never()).insertDebugReport(any()); in testScheduleSourceSuccessDebugReport_without_enrollmentId_dontSchedule()
387 verify(mMeasurementDao, never()).insertDebugReport(any()); in testScheduleSourceSuccessDebugReport_adTechNotOptIn_dontSchedule()
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DIMeasurementDao.java373 void insertDebugReport(DebugReport payload) throws DatastoreException; in insertDebugReport() method
DMeasurementDao.java1964 public void insertDebugReport(DebugReport debugReport) throws DatastoreException {
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/
DDebugReportApi.java370 dao.insertDebugReport(debugReport); in scheduleReport()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/
DMeasurementDaoTest.java464 .runInTransaction((dao) -> dao.insertDebugReport(debugReport)); in testInsertDebugReport()