Searched refs:responseObject (Results 1 – 3 of 3) sorted by relevance
45 @Nullable Object responseObject) { in mockOpenLogicalChannelResponse() argument46 boolean isException = responseObject instanceof Throwable; in mockOpenLogicalChannelResponse()47 int[] responseInts = isException ? null : getSelectResponse(responseObject.toString()); in mockOpenLogicalChannelResponse()48 Throwable exception = isException ? (Throwable) responseObject : null; in mockOpenLogicalChannelResponse()72 Object responseObject = responseObjects[mIndex++]; in mockSendToLogicalChannel()73 boolean isException = responseObject instanceof Throwable; in mockSendToLogicalChannel()76 String hex = responseObject.toString(); in mockSendToLogicalChannel()84 Throwable exception = isException ? (Throwable) responseObject : null; in mockSendToLogicalChannel()
67 JSONObject responseObject = new JSONObject(jsonResponse); in doInBackground() local68 if (responseObject != null) { in doInBackground()69 JSONArray results = responseObject.optJSONArray(JSON_KEY_RESULTS); in doInBackground()
481 public void onValues(ArrayList<Byte> responseObject, byte halStatus) { in openBasicChannel() argument483 responseList.add(arrayListToByteArray(responseObject)); in openBasicChannel()