Searched defs:streaming (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/net/www/http/
H A DHttpClient.java57 // true if we are in streaming mode (fixed length or chunked)
58 boolean streaming; field in class:HttpClient
274 httpuc.streaming() &&
608 boolean streaming) throws IOException {
609 this.streaming = streaming;
648 (!retryPostProp || streaming))) {
758 (!retryPostProp || streaming))) {
606 writeRequests(MessageHeader head, PosterOutputStream pos, boolean streaming) argument
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/
H A DHttpURLConnection.java103 "cannot retry due to proxy authentication, in streaming mode";
105 "cannot retry due to server authentication, in streaming mode";
107 "cannot retry due to redirection, in streaming mode";
571 if (!method.equals("PUT") && (poster != null || streaming())) {
578 if (streaming()) {
606 "use streaming mode for chunked encoding");
620 http.writeRequests(requests, poster, streaming());
1101 if (streaming() && strOutputStream == null) {
1109 if (streaming()) {
1147 public boolean streaming () { method in class:HttpURLConnection
[all...]

Completed in 706 milliseconds