Home
last modified time | relevance | path

Searched refs:PARSING_ERROR (Results 1 – 11 of 11) sorted by relevance

/packages/modules/NetworkStack/tests/unit/src/com/android/networkstack/metrics/
DNetworkIpProvisioningMetricsTest.java77 mMetrics.addDhcpErrorCode(DhcpErrorEvent.PARSING_ERROR); in testIpProvisioningMetrics_addDhcpErrorCode()
120 mMetrics.addDhcpErrorCode(DhcpErrorEvent.PARSING_ERROR); in testIpProvisioningMetrics_CollectMetrics()
121 mMetrics.addDhcpErrorCode(DhcpErrorEvent.PARSING_ERROR); in testIpProvisioningMetrics_CollectMetrics()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/registration/
DAsyncFetchStatus.java37 PARSING_ERROR, enumConstant
DFetcherUtil.java512 || asyncFetchStatus.getEntityStatus() == AsyncFetchStatus.EntityStatus.PARSING_ERROR in getFailureType()
DAsyncTriggerFetcher.java362 asyncFetchStatus.setEntityStatus(AsyncFetchStatus.EntityStatus.PARSING_ERROR); in parseTrigger()
DAsyncSourceFetcher.java852 asyncFetchStatus.setEntityStatus(AsyncFetchStatus.EntityStatus.PARSING_ERROR); in parseSource()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/
DE2EInteropMockTest.java84 AsyncFetchStatus.EntityStatus.PARSING_ERROR,
/packages/modules/NetworkStack/tests/unit/src/android/net/dhcp/
DDhcpPacketTest.java700 if (e.errorCode == DhcpErrorEvent.PARSING_ERROR) { in testTruncatedOfferPackets()
717 if (e.errorCode == DhcpErrorEvent.PARSING_ERROR) { in testRandomPackets()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/registration/
DAsyncSourceFetcherTest.java634 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in fetchSource_noDestinations_fail()
664 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in fetchSource_noAppDestination_emptyWebDestination_fail()
886 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadSourceJson_missingSourceEventId()
917 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadSourceJson_sendHeaderErrorDebugReport()
955 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadSourceJson_headerErrorDebugReportDiabled_doNotSend()
981 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadSourceJson_notOptInHeaderErrorDebugReport_doNotSend()
1012 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadSourceJson_invalidOptInHeaderErrorDebugReport_doNotSend()
1060 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadSourceJson_missingDestination()
2641 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testFailedParsingButValidRedirect_returnFailureWithRedirect()
3685 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBasicSourceRequestWithAggregateSource_rejectsTooManyKeys()
[all …]
DAsyncTriggerFetcherTest.java3373 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in basicTriggerRequest_withInvalidOffsetInAggregateTriggerData_throwsParsingError()
5349 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in triggerRequest_attributionConfigThrowingJsonException_dropsTheTriggerCompletely()
5382 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadTriggerJson_sendHeaderErrorDebugReport()
5423 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadTriggerJson_headerErrorReportFlagDisabled_doNotSend()
5453 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadTriggerJson_notOptInHeaderErrorDebugReport_doNotSend()
5489 AsyncFetchStatus.EntityStatus.PARSING_ERROR, asyncFetchStatus.getEntityStatus()); in testBadTriggerJson_invalidOptInHeaderErrorDebugReport_doNotSend()
DAsyncRegistrationQueueRunnerTest.java1804 asyncFetchStatus.setEntityStatus(AsyncFetchStatus.EntityStatus.PARSING_ERROR); in test_runAsyncRegistrationQueueWorker_appSource_parsingError()
2025 asyncFetchStatus.setEntityStatus(AsyncFetchStatus.EntityStatus.PARSING_ERROR); in test_runAsyncRegistrationQueueWorker_appTrigger_parsingError_withRedirects()
2275 asyncFetchStatus.setEntityStatus(AsyncFetchStatus.EntityStatus.PARSING_ERROR); in test_runAsyncRegistrationQueueWorker_webSource_parsingError()
2439 asyncFetchStatus.setEntityStatus(AsyncFetchStatus.EntityStatus.PARSING_ERROR); in test_runAsyncRegistrationQueueWorker_webTrigger_parsingError()
/packages/modules/NetworkStack/src/android/net/dhcp/
DDhcpPacket.java1429 throw new ParseException(DhcpErrorEvent.PARSING_ERROR, e.getMessage()); in decodeFullPacket()