Lines Matching refs:urlc

277         HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
278 urlc.setChunkedStreamingMode (20);
279 urlc.setDoOutput(true);
280 urlc.setRequestMethod ("POST");
281 OutputStream os = urlc.getOutputStream ();
284 InputStream is = urlc.getInputStream();
294 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
295 urlc.setFixedLengthStreamingMode (str2.length());
296 urlc.setDoOutput(true);
297 urlc.setRequestMethod ("POST");
298 OutputStream os = urlc.getOutputStream ();
301 InputStream is = urlc.getInputStream();
311 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
312 urlc.setFixedLengthStreamingMode (str2.length()+1);
313 urlc.setDoOutput(true);
314 urlc.setRequestMethod ("POST");
315 OutputStream os = urlc.getOutputStream ();
328 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
329 urlc.setFixedLengthStreamingMode (str2.length()-1);
330 urlc.setDoOutput(true);
331 urlc.setRequestMethod ("POST");
332 OutputStream os = urlc.getOutputStream ();
344 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
345 urlc.setChunkedStreamingMode (20);
346 urlc.setDoOutput(true);
347 urlc.setRequestMethod ("POST");
348 OutputStream os = urlc.getOutputStream ();
352 InputStream is = urlc.getInputStream();
369 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
370 urlc.setChunkedStreamingMode (20);
371 urlc.setDoOutput(true);
372 urlc.setRequestMethod ("POST");
373 OutputStream os = urlc.getOutputStream ();
375 int ret = urlc.getResponseCode();
384 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
385 urlc.setFixedLengthStreamingMode (0);
386 urlc.setDoOutput(true);
387 urlc.setRequestMethod ("POST");
388 OutputStream os = urlc.getOutputStream ();
390 int ret = urlc.getResponseCode();
401 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
402 urlc.setChunkedStreamingMode (-1);
403 urlc.setDoOutput(true);
404 urlc.setRequestMethod ("POST");
405 OutputStream os = urlc.getOutputStream ();
408 InputStream is = urlc.getInputStream();
416 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
417 urlc.setChunkedStreamingMode (4 * 1024);
418 urlc.setDoOutput(true);
419 urlc.setRequestMethod ("POST");
420 OutputStream os = urlc.getOutputStream ();
429 InputStream is = urlc.getInputStream();
431 int ret = urlc.getResponseCode();
440 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
441 urlc.setChunkedStreamingMode (36 * 1024);
442 urlc.setDoOutput(true);
443 urlc.setRequestMethod ("POST");
444 OutputStream os = urlc.getOutputStream ();
456 InputStream is = urlc.getInputStream();
458 int ret = urlc.getResponseCode();
467 HttpURLConnection urlc = (HttpURLConnection)url.openConnection ();
468 urlc.setChunkedStreamingMode (36 * 1024);
469 urlc.setDoOutput(true);
470 urlc.setRequestMethod ("POST");
471 OutputStream os = urlc.getOutputStream ();
478 InputStream is = urlc.getInputStream();
480 int ret = urlc.getResponseCode();