Lines Matching defs:args
104 JSONObject args = new JSONObject();
105 args.put("owner", new JSONString(staticData.getCurrentUserLogin()));
106 rpcProxy.rpcCall("get_saved_queries", args, new JsonRpcCallback() {
148 JSONObject args = new JSONObject();
149 args.put("name", new JSONString(addQueryDialog.widget.getText()));
150 args.put("url_token", new JSONString(CustomHistory.getLastHistoryToken().toString()));
151 rpcProxy.rpcCall("add_saved_query", args, new JsonRpcCallback() {
163 JSONObject args = new JSONObject();
166 args.put("id_list", ids);
167 rpcProxy.rpcCall("delete_saved_queries", args, new JsonRpcCallback() {
183 JSONObject args = new JSONObject();
184 args.put("id", new JSONNumber(Integer.parseInt(idString)));
185 rpcProxy.rpcCall("get_saved_queries", args, new JsonRpcCallback() {