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

/external/oauth/core/src/main/java/net/oauth/client/
H A DURLConnectionClient.java90 .setFixedLengthStreamingMode(Integer.parseInt(contentLength));
/external/okhttp/src/main/java/com/squareup/okhttp/
H A DOkHttpConnection.java100 * #setFixedLengthStreamingMode(int)} when the body length is known in advance,
786 public void setFixedLengthStreamingMode(int contentLength) { method in class:OkHttpConnection
810 * @see #setFixedLengthStreamingMode
/external/okhttp/src/main/java/libcore/net/http/
H A DHttpsURLConnectionImpl.java365 public void setFixedLengthStreamingMode(int contentLength) { method in class:HttpsURLConnectionImpl
366 delegate.setFixedLengthStreamingMode(contentLength);
/external/okhttp/src/test/java/libcore/net/http/
H A DURLConnectionTest.java369 conn.setFixedLengthStreamingMode(n);
965 connection.setFixedLengthStreamingMode(requestBody.length);
1024 connection.setFixedLengthStreamingMode(-2);
1042 connection.setFixedLengthStreamingMode(1);
1065 connection.setFixedLengthStreamingMode(1);
1074 connection.setFixedLengthStreamingMode(1);
1105 connection.setFixedLengthStreamingMode(requestBody.length);
1562 connection.setFixedLengthStreamingMode(upload.length);

Completed in 194 milliseconds