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

/libcore/luni/src/main/java/java/net/
H A DHttpURLConnection.java94 * #setFixedLengthStreamingMode(int)} when the body length is known in advance,
760 public void setFixedLengthStreamingMode(long contentLength) { method in class:HttpURLConnection
775 * Equivalent to {@code setFixedLengthStreamingMode((long) contentLength)},
778 public void setFixedLengthStreamingMode(int contentLength) { method in class:HttpURLConnection
779 setFixedLengthStreamingMode((long) contentLength);
793 * @see #setFixedLengthStreamingMode

Completed in 27 milliseconds