Home
last modified time | relevance | path

Searched refs:isDebugReporting (Results 1 – 8 of 8) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/
DDebugReportApi.java169 if (isAdTechNotOptIn(source.isDebugReporting(), Type.SOURCE_SUCCESS)) { in scheduleSourceSuccessDebugReport()
207 if (isAdTechNotOptIn(source.isDebugReporting(), Type.SOURCE_NOISED)) { in scheduleSourceNoisedDebugReport()
229 if (isAdTechNotOptIn(source.isDebugReporting(), Type.SOURCE_STORAGE_LIMIT)) { in scheduleSourceStorageLimitDebugReport()
253 source.isDebugReporting(), Type.SOURCE_FLEXIBLE_EVENT_REPORT_VALUE_ERROR)) { in scheduleSourceFlexibleEventReportApiDebugReport()
275 if (isAdTechNotOptIn(source.isDebugReporting(), Type.SOURCE_UNKNOWN_ERROR)) { in scheduleSourceUnknownErrorDebugReport()
301 if (isAdTechNotOptIn(trigger.isDebugReporting(), type)) { in scheduleTriggerNoMatchingSourceDebugReport()
330 if (isAdTechNotOptIn(trigger.isDebugReporting(), type)) { in scheduleTriggerDebugReport()
362 if (isAdTechNotOptIn(trigger.isDebugReporting(), type)) { in scheduleTriggerDebugReportWithAllFields()
387 if (isAdTechNotOptIn(source.isDebugReporting(), Type.SOURCE_DESTINATION_LIMIT)) { in scheduleSourceDestinationLimitDebugReport()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DTrigger.java292 public boolean isDebugReporting() { in isDebugReporting() method in Trigger
693 public Builder setIsDebugReporting(boolean isDebugReporting) { in setIsDebugReporting() argument
694 mBuilding.mIsDebugReporting = isDebugReporting; in setIsDebugReporting()
DSource.java890 public boolean isDebugReporting() { in isDebugReporting() method in Source
1534 public Builder setIsDebugReporting(boolean isDebugReporting) { in setIsDebugReporting() argument
1535 mBuilding.mIsDebugReporting = isDebugReporting; in setIsDebugReporting()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/
DAbstractDbIntegrationTest.java404 values.put(MeasurementTables.SourceContract.DEBUG_REPORTING, source.isDebugReporting()); in insertToDb()
DMeasurementDaoTest.java260 assertEquals(validSource.isDebugReporting(), source.isDebugReporting()); in testInsertSource()
323 assertEquals(validSource.isDebugReporting(), source.isDebugReporting()); in testInsertSource_flexibleEventReport_equal()
6644 values.put(SourceContract.DEBUG_REPORTING, source.isDebugReporting()); in insertSource()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/registration/
DAsyncTriggerFetcherTest.java4621 assertTrue(result.isDebugReporting()); in testBasicTriggerRequestWithDebugReportingHeader()
4653 assertFalse(result.isDebugReporting()); in testBasicTriggerRequestWithInvalidDebugReportingHeader()
4685 assertFalse(result.isDebugReporting()); in testBasicTriggerRequestWithNullDebugReportingHeader()
4717 assertFalse(result.isDebugReporting()); in testBasicTriggerRequestWithNoQuotesDebugReportingHeader()
4746 assertFalse(result.isDebugReporting()); in testBasicTriggerRequestWithEmptyDebugReportingHeader()
DAsyncSourceFetcherTest.java2394 assertTrue(result.isDebugReporting()); in testBasicSourceRequestWithDebugReportingHeader()
2435 assertFalse(result.isDebugReporting()); in testBasicSourceRequestWithInvalidDebugReportingHeader()
2476 assertFalse(result.isDebugReporting()); in testBasicSourceRequestWithNullDebugReportingHeader()
2517 assertFalse(result.isDebugReporting()); in testBasicSourceRequestWithInvalidNoQuotesDebugReportingHeader()
2557 assertFalse(result.isDebugReporting()); in testBasicSourceRequestWithoutDebugReportingHeader()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DMeasurementDao.java136 values.put(MeasurementTables.TriggerContract.DEBUG_REPORTING, trigger.isDebugReporting()); in insertTrigger()
698 values.put(SourceContract.DEBUG_REPORTING, source.isDebugReporting()); in insertSource()