Searched refs:jsonRequest (Results 1 - 2 of 2) sorted by path

/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DJsonArrayRequest.java49 * @param jsonRequest A {@link JSONArray} to post with the request. Null is allowed and
54 public JsonArrayRequest(int method, String url, JSONArray jsonRequest, argument
56 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
H A DJsonObjectRequest.java40 * @param jsonRequest A {@link JSONObject} to post with the request. Null is allowed and
45 public JsonObjectRequest(int method, String url, JSONObject jsonRequest, argument
47 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
52 * Constructor which defaults to <code>GET</code> if <code>jsonRequest</code> is
57 public JsonObjectRequest(String url, JSONObject jsonRequest, Listener<JSONObject> listener, argument
59 this(jsonRequest == null ? Method.GET : Method.POST, url, jsonRequest,

Completed in 69 milliseconds