Home
last modified time | relevance | path

Searched refs:errorInfo (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/
DSppResponseMessageTest.java87 SoapObject errorInfo = new SoapObject(); in verifySppSoapResponseWithErrorAttribute() local
88 errorInfo.addAttribute(SppResponseMessage.SPPErrorCodeAttribute, TEST_ERROR); in verifySppSoapResponseWithErrorAttribute()
89 soapObject.addProperty(SppResponseMessage.SPPErrorProperty, errorInfo); in verifySppSoapResponseWithErrorAttribute()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/soap/
DSppResponseMessage.java80 SoapObject errorInfo = (SoapObject) response.getProperty(SPPErrorProperty); in SppResponseMessage() local
81 if (!errorInfo.hasAttribute(SPPErrorCodeAttribute)) { in SppResponseMessage()
85 errorInfo.getAttributeAsString(SPPErrorCodeAttribute)); in SppResponseMessage()
/frameworks/base/tests/Compatibility/src/com/android/compatibilitytest/
DAppCompatibility.java281 private void addProcessError(String processName, String errorType, String errorInfo) { in addProcessError() argument
290 errors.add(String.format("### Type: %s, Details:\n%s", errorType, errorInfo)); in addProcessError()