Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/common/
DAppManifestConfigCallTest.java39 import static com.android.adservices.service.common.AppManifestConfigCall.resultToString;
138 .that(resultToString(RESULT_UNSPECIFIED)) in testResultToString()
141 .that(resultToString(RESULT_ALLOWED_BY_DEFAULT_APP_DOES_NOT_HAVE_CONFIG)) in testResultToString()
146 .that(resultToString(RESULT_ALLOWED_BY_DEFAULT_APP_HAS_CONFIG_WITHOUT_API_SECTION)) in testResultToString()
149 .that(resultToString(RESULT_ALLOWED_APP_ALLOWS_ALL)) in testResultToString()
152 .that(resultToString(RESULT_ALLOWED_APP_ALLOWS_SPECIFIC_ID)) in testResultToString()
155 .that(resultToString(RESULT_DISALLOWED_APP_DOES_NOT_EXIST)) in testResultToString()
158 .that(resultToString(RESULT_DISALLOWED_APP_CONFIG_PARSING_ERROR)) in testResultToString()
161 .that(resultToString(RESULT_DISALLOWED_APP_DOES_NOT_HAVE_CONFIG)) in testResultToString()
165 .that(resultToString(RESULT_DISALLOWED_APP_HAS_CONFIG_WITHOUT_API_SECTION)) in testResultToString()
[all …]
DAppManifestConfigMetricsLoggerTest.java28 import static com.android.adservices.service.common.AppManifestConfigCall.resultToString;
276 + resultToString(RESULT_ALLOWED_APP_ALLOWS_ALL) in testDump_multipleEntries()
284 + resultToString(RESULT_DISALLOWED_BY_APP) in testDump_multipleEntries()
292 + resultToString(RESULT_ALLOWED_BY_DEFAULT_APP_DOES_NOT_HAVE_CONFIG) in testDump_multipleEntries()
DAppManifestConfigParserTest.java23 import static com.android.adservices.service.common.AppManifestConfigCall.resultToString;
627 resultToString(actualResult), in assertResult()
629 resultToString(expectedResult)) in assertResult()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/common/
DAppManifestConfigCall.java163 + resultToString(result) in toString()
167 static String resultToString(@Result int result) { in resultToString() method in AppManifestConfigCall
DAppManifestConfigMetricsLogger.java20 import static com.android.adservices.service.common.AppManifestConfigCall.resultToString;
159 pw.printf("%s%s: %s\n", prefix2, appAndApi, resultToString(result)); in dump()