HomeSort by relevance Sort by last modified time
    Searched refs:responseObject (Results 1 - 4 of 4) sorted by null

  /external/autotest/frontend/client/src/autotest/common/
JsonRpcProxy.java 89 protected static void handleResponseObject(JSONObject responseObject,
91 JSONValue error = responseObject.get("error");
93 notify.showError("Bad JSON response", responseObject.toString());
102 JSONValue result = responseObject.get("result");
PaddedJsonRpcProxy.java 108 JSONObject responseObject = new JSONObject(responseJso);
109 handleResponseObject(responseObject, rpcCallback);
XhrJsonRpcProxy.java 82 JSONObject responseObject = responseValue.isObject();
83 handleResponseObject(responseObject, callback);
  /packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
ReverseGeocodeTask.java 66 JSONObject responseObject = new JSONObject(jsonResponse);
67 if (responseObject != null) {
68 JSONArray results = responseObject.optJSONArray(JSON_KEY_RESULTS);

Completed in 57 milliseconds