Home
last modified time | relevance | path

Searched refs:DebugReportStatus (Results 1 – 14 of 14) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DEventReport.java55 private @DebugReportStatus int mDebugReportStatus;
76 DebugReportStatus.NONE,
77 DebugReportStatus.PENDING,
78 DebugReportStatus.DELIVERED,
81 public @interface DebugReportStatus { annotation in EventReport
214 public @DebugReportStatus int getDebugReportStatus() { in getDebugReportStatus()
366 public Builder setDebugReportStatus(@DebugReportStatus int debugReportStatus) { in setDebugReportStatus()
474 mBuilding.mDebugReportStatus = DebugReportStatus.NONE; in populateFromSourceAndTrigger()
476 mBuilding.mDebugReportStatus = DebugReportStatus.PENDING; in populateFromSourceAndTrigger()
512 mBuilding.mDebugReportStatus = DebugReportStatus.NONE; in getForFlex()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/aggregation/
DAggregateReportTest.java71 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in createAttributionReport()
93 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in createAttributionReportSingleTriggerDebugKey()
114 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in createAttributionReportSingleSourceDebugKey()
138 AggregateReport.DebugReportStatus.PENDING, in testCreation()
166 AggregateReport.DebugReportStatus.PENDING, in testCreationSingleSourceDebugKey()
193 AggregateReport.DebugReportStatus.PENDING, in testCreationSingleTriggerDebugKey()
220 AggregateReport.DebugReportStatus.NONE, attributionReport.getDebugReportStatus()); in testDefaults()
256 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in testHashCode_notEquals()
308 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in extractAggregateHistogramContributions_withInvalidDebugPayload_returnsEmptyList()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/aggregation/
DAggregateReport.java61 private @DebugReportStatus int mDebugReportStatus;
83 DebugReportStatus.NONE,
84 DebugReportStatus.PENDING,
85 DebugReportStatus.DELIVERED,
88 public @interface DebugReportStatus { annotation in AggregateReport
104 mDebugReportStatus = DebugReportStatus.NONE; in AggregateReport()
245 public @DebugReportStatus int getDebugReportStatus() { in getDebugReportStatus()
421 public Builder setDebugReportStatus(@DebugReportStatus int debugReportStatus) { in setDebugReportStatus()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/
DEventReportTest.java148 assertEquals(EventReport.DebugReportStatus.PENDING, eventReport.getDebugReportStatus()); in creation_success()
173 assertEquals(EventReport.DebugReportStatus.PENDING, eventReport.getDebugReportStatus()); in creationSuccessSingleSourceDebugKey()
197 assertEquals(EventReport.DebugReportStatus.PENDING, eventReport.getDebugReportStatus()); in creationSuccessSingleTriggerDebugKey()
221 assertEquals(EventReport.DebugReportStatus.PENDING, eventReport.getDebugReportStatus()); in creationSuccessMultipleTriggerDebugKeys()
245 assertEquals(EventReport.DebugReportStatus.NONE, eventReport.getDebugReportStatus()); in defaults_success()
763 .setStatus(EventReport.DebugReportStatus.PENDING) in testHashCode_notEquals()
879 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in createExample()
904 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in createExampleSingleTriggerDebugKey()
926 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in createExampleMultipleTriggerDebugKeys()
948 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in createExampleSingleSourceDebugKey()
/packages/modules/AdServices/adservices/tests/unittest/fixtures/java/com/android/adservices/service/measurement/
DEventReportFixture.java40 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in getBaseEventReportBuild()
/packages/modules/AdServices/adservices/tests/unittest/fixtures/java/com/android/adservices/service/measurement/aggregation/
DAggregateReportFixture.java54 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in getValidAggregateReportBuilder()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/reporting/
DEventReportingJobHandlerTest.java229 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in testSendReportForPendingDebugReportSuccess()
274 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in testSendReportSuccess_reinstallAttributionEnabled_persistsAppReportHistory()
345 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in testSendReportSuccess_reinstallAttributionDisabled_doesNotPersistsAppReportHistory()
414 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in testSendReportForPendingReportSuccess_coarseSource_doesNotPersistAppReportHistory()
DAggregateReportingJobHandlerTest.java468 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in testSendReportForPendingDebugReportSuccess()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/attribution/
DAttributionJobHandler.java523 int debugReportStatus = AggregateReport.DebugReportStatus.NONE; in maybeGenerateAggregateReport()
525 debugReportStatus = AggregateReport.DebugReportStatus.PENDING; in maybeGenerateAggregateReport()
579 == AggregateReport.DebugReportStatus.PENDING) { in maybeGenerateAggregateReport()
1005 if (newEventReport.getDebugReportStatus() == EventReport.DebugReportStatus.PENDING) { in maybeGenerateEventReport()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/
DEventReportingJobHandler.java224 && eventReport.getDebugReportStatus() != EventReport.DebugReportStatus.PENDING) { in performReport()
DAggregateReportingJobHandler.java246 != AggregateReport.DebugReportStatus.PENDING) { in performReport()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DMeasurementDao.java1117 EventReport.DebugReportStatus.DELIVERED); in markEventDebugReportDelivered()
1137 AggregateReport.DebugReportStatus.DELIVERED); in markAggregateDebugReportDelivered()
3782 new String[] {String.valueOf(EventReport.DebugReportStatus.PENDING)},
3823 String.valueOf(EventReport.DebugReportStatus.PENDING),
3966 new String[] {String.valueOf(AggregateReport.DebugReportStatus.PENDING)},
4010 String.valueOf(AggregateReport.DebugReportStatus.PENDING),
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/attribution/
DAttributionJobHandlerTest.java5414 EventReport.DebugReportStatus.NONE,
5417 EventReport.DebugReportStatus.PENDING,
5420 EventReport.DebugReportStatus.PENDING,
5589 EventReport.DebugReportStatus.PENDING,
5592 EventReport.DebugReportStatus.PENDING,
5595 EventReport.DebugReportStatus.NONE,
5660 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING)
5763 EventReport.DebugReportStatus.NONE,
5766 EventReport.DebugReportStatus.NONE,
5769 EventReport.DebugReportStatus.PENDING,
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/
DMeasurementDaoTest.java9226 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in getPendingAggregateDebugReportIdsByCoordinatorWithRetryLimit()
9232 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in getPendingAggregateDebugReportIdsByCoordinatorWithRetryLimit()
9238 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in getPendingAggregateDebugReportIdsByCoordinatorWithRetryLimit()
9244 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in getPendingAggregateDebugReportIdsByCoordinatorWithRetryLimit()
9366 EventReport.DebugReportStatus.PENDING); in getPendingEventDebugReportIdsWithRetryLimit()