/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/ |
D | EventReport.java | 55 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/ |
D | AggregateReportTest.java | 71 .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/ |
D | AggregateReport.java | 61 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/ |
D | EventReportTest.java | 148 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/ |
D | EventReportFixture.java | 40 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in getBaseEventReportBuild()
|
/packages/modules/AdServices/adservices/tests/unittest/fixtures/java/com/android/adservices/service/measurement/aggregation/ |
D | AggregateReportFixture.java | 54 .setDebugReportStatus(EventReport.DebugReportStatus.PENDING) in getValidAggregateReportBuilder()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/reporting/ |
D | EventReportingJobHandlerTest.java | 229 .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()
|
D | AggregateReportingJobHandlerTest.java | 468 .setDebugReportStatus(AggregateReport.DebugReportStatus.PENDING) in testSendReportForPendingDebugReportSuccess()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/attribution/ |
D | AttributionJobHandler.java | 523 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/ |
D | EventReportingJobHandler.java | 224 && eventReport.getDebugReportStatus() != EventReport.DebugReportStatus.PENDING) { in performReport()
|
D | AggregateReportingJobHandler.java | 246 != AggregateReport.DebugReportStatus.PENDING) { in performReport()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/ |
D | MeasurementDao.java | 1117 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/ |
D | AttributionJobHandlerTest.java | 5414 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/ |
D | MeasurementDaoTest.java | 9226 .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()
|