Home
last modified time | relevance | path

Searched refs:soapResponse (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/soap/command/
DSppCommand.java84 private SppCommand(PropertyInfo soapResponse) throws IllegalArgumentException { in SppCommand() argument
85 if (!sCommands.containsKey(soapResponse.getName())) { in SppCommand()
86 throw new IllegalArgumentException("can't find the command: " + soapResponse.getName()); in SppCommand()
88 mSppCommandId = sCommands.get(soapResponse.getName()); in SppCommand()
90 Log.i(TAG, "command name: " + soapResponse.getName()); in SppCommand()
98 SoapObject subCommand = (SoapObject) soapResponse.getValue(); in SppCommand()
142 mCommandData = PpsMoData.createInstance(soapResponse); in SppCommand()
170 public static SppCommand createInstance(@NonNull PropertyInfo soapResponse) { in createInstance() argument
173 sppCommand = new SppCommand(soapResponse); in createInstance()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DOsuServerConnection.java361 SoapObject soapResponse = (SoapObject) response; in performSoapMessageExchange() local
363 for (int i = 0; i < soapResponse.getAttributeCount(); i++) { in performSoapMessageExchange()
365 soapResponse.getAttributeInfo(i, attributeInfo); in performSoapMessageExchange()
368 Log.v(TAG, "response : " + soapResponse.toString()); in performSoapMessageExchange()
372 sppResponse = SoapParser.getResponse(soapResponse); in performSoapMessageExchange()