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.java38 import static com.android.adservices.service.common.AppManifestConfigCall.resultToString;
152 .that(resultToString(RESULT_UNSPECIFIED)) in testResultToString()
155 .that(resultToString(RESULT_ALLOWED_BY_DEFAULT_APP_DOES_NOT_HAVE_CONFIG)) in testResultToString()
160 .that(resultToString(RESULT_ALLOWED_BY_DEFAULT_APP_HAS_CONFIG_WITHOUT_API_SECTION)) in testResultToString()
163 .that(resultToString(RESULT_ALLOWED_APP_ALLOWS_ALL)) in testResultToString()
166 .that(resultToString(RESULT_ALLOWED_APP_ALLOWS_SPECIFIC_ID)) in testResultToString()
169 .that(resultToString(RESULT_DISALLOWED_APP_DOES_NOT_EXIST)) in testResultToString()
172 .that(resultToString(RESULT_DISALLOWED_APP_CONFIG_PARSING_ERROR)) in testResultToString()
175 .that(resultToString(RESULT_DISALLOWED_APP_DOES_NOT_HAVE_CONFIG)) in testResultToString()
179 .that(resultToString(RESULT_DISALLOWED_APP_HAS_CONFIG_WITHOUT_API_SECTION)) in testResultToString()
[all …]
DAppManifestConfigMetricsLoggerTest.java30 import static com.android.adservices.service.common.AppManifestConfigCall.resultToString;
279 + resultToString(RESULT_ALLOWED_APP_ALLOWS_ALL) in testDump_multipleEntries()
287 + resultToString(RESULT_DISALLOWED_BY_APP) in testDump_multipleEntries()
295 + resultToString(RESULT_ALLOWED_BY_DEFAULT_APP_DOES_NOT_HAVE_CONFIG) in testDump_multipleEntries()
DAppManifestConfigParserTest.java22 import static com.android.adservices.service.common.AppManifestConfigCall.resultToString;
574 resultToString(actualResult), in assertResult()
576 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;
155 pw.printf("%s%s: %s\n", prefix2, appAndApi, resultToString(result)); in dump()