Searched refs:soapResponse (Results 1 – 2 of 2) sorted by relevance
84 private SppCommand(PropertyInfo soapResponse) throws IllegalArgumentException { in SppCommand() argument85 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() argument173 sppCommand = new SppCommand(soapResponse); in createInstance()
361 SoapObject soapResponse = (SoapObject) response; in performSoapMessageExchange() local363 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()