Searched refs:soapObject (Results 1 – 3 of 3) sorted by relevance
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/ |
D | SppResponseMessageTest.java | 56 SoapObject soapObject = new SoapObject(); in verifySppSoapResponseWithoutErrorAttribute() local 57 soapObject.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_STATUS); in verifySppSoapResponseWithoutErrorAttribute() 58 soapObject.addAttribute(SppResponseMessage.SPPSessionIDAttribute, TEST_SESSION_ID); in verifySppSoapResponseWithoutErrorAttribute() 59 soapObject.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifySppSoapResponseWithoutErrorAttribute() 65 SppResponseMessage sppResponseMessage = new SppResponseMessage(soapObject, in verifySppSoapResponseWithoutErrorAttribute() 83 SoapObject soapObject = new SoapObject(); in verifySppSoapResponseWithErrorAttribute() local 84 soapObject.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_ERROR_STATUS); in verifySppSoapResponseWithErrorAttribute() 85 soapObject.addAttribute(SppResponseMessage.SPPSessionIDAttribute, TEST_SESSION_ID); in verifySppSoapResponseWithErrorAttribute() 86 soapObject.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifySppSoapResponseWithErrorAttribute() 89 soapObject.addProperty(SppResponseMessage.SPPErrorProperty, errorInfo); in verifySppSoapResponseWithErrorAttribute() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/soap/command/ |
D | PpsMoData.java | 75 SoapPrimitive soapObject = (SoapPrimitive) command.getValue(); in createInstance() local 76 if (!soapObject.hasAttribute(ATTRIBUTE_MANAGEMENT_TREE_URI)) { in createInstance() 81 if (!soapObject.hasAttribute(ATTRIBUTE_MO_URN)) { in createInstance() 86 if (soapObject.getValue() == null) { in createInstance() 92 (String) soapObject.getAttributeSafelyAsString(ATTRIBUTE_MANAGEMENT_TREE_URI), in createInstance() 93 (String) soapObject.getAttributeSafelyAsString(ATTRIBUTE_MO_URN), in createInstance() 94 soapObject.getValue().toString()); in createInstance()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/soap/ |
D | PostDevDataMessage.java | 89 private static void addMoContainer(SoapObject soapObject, String moUrn, String moText) { in addMoContainer() argument 93 soapObject.addProperty(SoapEnvelope.NS20, SppConstants.PROPERTY_MO_CONTAINER, moContainer); in addMoContainer()
|