Home
last modified time | relevance | path

Searched refs:mErrorData (Results 1 – 4 of 4) sorted by relevance

/packages/modules/IPsec/src/java/android/net/ipsec/ike/exceptions/
DIkeProtocolException.java102 private final byte[] mErrorData; field in IkeProtocolException
108 mErrorData = ERROR_DATA_NOT_INCLUDED; in IkeProtocolException()
115 mErrorData = ERROR_DATA_NOT_INCLUDED; in IkeProtocolException()
122 mErrorData = ERROR_DATA_NOT_INCLUDED; in IkeProtocolException()
129 mErrorData = ERROR_DATA_NOT_INCLUDED; in IkeProtocolException()
149 mErrorData = notifyData.clone(); in IkeProtocolException()
211 return mErrorData; in getErrorData()
221 return new IkeNotifyPayload(mErrorType, mErrorData); in buildNotifyPayload()
/packages/modules/OnDevicePersonalization/tests/servicetests/src/com/android/ondevicepersonalization/services/data/errors/
DAggregatedErrorReportingProtocolTest.java109 private ErrorData mErrorData; field in AggregatedErrorReportingProtocolTest
132 mErrorData = getExpectedErrorData(mDayIndexUtc); in setup()
145 ImmutableList.of(mErrorData), in reportExceptionData_httpClientFails()
166 ImmutableList.of(mErrorData), in reportExceptionData_httpClientFailedErrorCode()
188 ImmutableList.of(mErrorData), in reportExceptionData_httpClientMissingUploadLocation()
216 createExpectedUploadRequest(UPLOAD_LOCATION_URI, ImmutableList.of(mErrorData)); in reportExceptionData_httpClientSuccessful()
221 ImmutableList.of(mErrorData), in reportExceptionData_httpClientSuccessful()
255 ImmutableList.of(mErrorData), in reportExceptionData_httpClientTimeout()
280 convertToProto(ImmutableList.of(mErrorData)); in createEncryptedRequestBody()
293 ImmutableList.of(mErrorData), in createEncryptedRequestBody()
[all …]
DAggregatedErrorReportingWorkerTest.java191 assertEquals(getExpectedErrorData(mDayIndexUtc), mTestInjector.mErrorData.get(0)); in reportAggregateErrors_withErrorData_succeeds()
256 assertEquals(getExpectedErrorData(mDayIndexUtc), mTestInjector.mErrorData.get(0)); in reportAggregateErrors_withErrorData_reportingProtocolFails()
304 private ImmutableList<ErrorData> mErrorData; field in AggregatedErrorReportingWorkerTest.TestInjector
330 mErrorData = errorData; in getAggregatedErrorReportingProtocol()
/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/data/errors/
DAggregatedErrorReportingProtocol.java76 private final ImmutableList<ErrorData> mErrorData; field in AggregatedErrorReportingProtocol
125 this.mErrorData = errorData; in AggregatedErrorReportingProtocol()
169 Preconditions.checkState(!mErrorData.isEmpty() && !mRequestBaseUri.isEmpty()); in reportExceptionData()
216 mErrorData, /* encryptionKey= */ null, /* encrypter= */ null) in uploadExceptionData()
217 : createEncryptedRequestBody(mErrorData, encryptionKey, mEncrypter); in uploadExceptionData()