Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/errorlogging/
DAdServicesErrorLoggerImpl.java87 return !mFlags.getErrorCodeLoggingDenyList().contains(errorCode) in isEnabled()
/packages/modules/AdServices/adservices/tests/unittest/service-core/common/src/com/android/adservices/errorlogging/
DAdServicesErrorLoggerImplTest.java207 when(mFlags.getErrorCodeLoggingDenyList()).thenReturn(errorCodeLoggingDenyList); in mockErrorCodeLoggingDenyList()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/
DPhFlagsTest.java3568 assertThat(mPhFlags.getErrorCodeLoggingDenyList()).isEmpty(); in testGetErrorCodeLoggingDenyList()
3572 assertThat(mPhFlags.getErrorCodeLoggingDenyList()).isEqualTo(ImmutableList.of(10, 11, 12)); in testGetErrorCodeLoggingDenyList()
3575 assertThat(mPhFlags.getErrorCodeLoggingDenyList()).isEqualTo(ImmutableList.of(10, 11, 12)); in testGetErrorCodeLoggingDenyList()
3578 assertThat(mPhFlags.getErrorCodeLoggingDenyList()).isEqualTo(ImmutableList.of()); in testGetErrorCodeLoggingDenyList()
3581 assertThat(mPhFlags.getErrorCodeLoggingDenyList()).isEqualTo(ImmutableList.of()); in testGetErrorCodeLoggingDenyList()
3585 assertThat(mPhFlags.getErrorCodeLoggingDenyList()).isEqualTo(ImmutableList.of(1, 34)); in testGetErrorCodeLoggingDenyList()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/
DFlags.java4402 default ImmutableList<Integer> getErrorCodeLoggingDenyList() { in getErrorCodeLoggingDenyList() method
DPhFlags.java4944 + getErrorCodeLoggingDenyList()); in dump()
5643 public ImmutableList<Integer> getErrorCodeLoggingDenyList() { in getErrorCodeLoggingDenyList() method in PhFlags