Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/appsearch/
DAppSearchDao.java19 …ort static com.android.adservices.service.consent.ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE;
259 ERROR_MESSAGE_APPSEARCH_FAILURE, in writeData()
279 throw new RuntimeException(ERROR_MESSAGE_APPSEARCH_FAILURE, e); in writeData()
282 throw new RuntimeException(ERROR_MESSAGE_APPSEARCH_FAILURE, e); in writeData()
325 ERROR_MESSAGE_APPSEARCH_FAILURE, in deleteData()
345 throw new RuntimeException(ERROR_MESSAGE_APPSEARCH_FAILURE, e); in deleteData()
348 throw new RuntimeException(ERROR_MESSAGE_APPSEARCH_FAILURE, e); in deleteData()
DAppSearchConsentWorker.java554 throw new RuntimeException(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in getAdServicesPackageName()
561 throw new RuntimeException(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in getAdServicesPackageName()
/packages/modules/AdServices/adservices/tests/unittest/service-core/appsearch/src/com/android/adservices/service/appsearch/
DAppSearchConsentWorkerTest.java151 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testSetConsent_failure()
164 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testSetConsent_failure_timeout()
206 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testGetAdServicesPackageName_null()
516 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in runRecordNotificationDisplayedTestFailure()
549 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in runRecordNotificationDisplayedTestFailureTimeout()
612 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testSetCurrentPrivacySandboxFeature_failure()
628 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testSetCurrentPrivacySandboxFeature_failure_timeout()
671 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testRecordUserManualInteractionWithConsent_failure()
690 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testRecordUserManualInteractionWithConsent_failure_timeout()
727 assertThat(e.getMessage()).isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testRecordBlockedTopic_failure()
[all …]
DAppSearchDaoTest.java327 assertThat(e).hasMessageThat().isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testWriteConsentData_failure()
337 ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE in testWriteConsentData_failure()
393 assertThat(e).hasMessageThat().isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testWriteConsentData_timeout()
431 assertThat(e).hasMessageThat().isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testDeleteConsentData_failure()
441 ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE in testDeleteConsentData_failure()
499 assertThat(e).hasMessageThat().isEqualTo(ConsentConstants.ERROR_MESSAGE_APPSEARCH_FAILURE); in testDeleteConsentData_timeout()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/consent/
DConsentConstants.java90 public static final String ERROR_MESSAGE_APPSEARCH_FAILURE = field in ConsentConstants