Searched defs:setFixedLengthStreamingMode (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/net/
H A DHttpURLConnection.java126 * <B>NOTE:</B> {@link #setFixedLengthStreamingMode(long)} is recommended
141 public void setFixedLengthStreamingMode (int contentLength) { method in class:HttpURLConnection
172 * over any value set by {@link #setFixedLengthStreamingMode(int)}.
186 public void setFixedLengthStreamingMode(long contentLength) { method in class:HttpURLConnection
228 * @see #setFixedLengthStreamingMode(int)
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DHttpsURLConnectionOldImpl.java496 public void setFixedLengthStreamingMode (int contentLength) { method in class:HttpsURLConnectionOldImpl
497 delegate.setFixedLengthStreamingMode(contentLength);
500 public void setFixedLengthStreamingMode(long contentLength) { method in class:HttpsURLConnectionOldImpl
501 delegate.setFixedLengthStreamingMode(contentLength);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DHttpsURLConnectionImpl.java526 public void setFixedLengthStreamingMode (int contentLength) { method in class:HttpsURLConnectionImpl
527 delegate.setFixedLengthStreamingMode(contentLength);
530 public void setFixedLengthStreamingMode(long contentLength) { method in class:HttpsURLConnectionImpl
531 delegate.setFixedLengthStreamingMode(contentLength);

Completed in 130 milliseconds