Searched refs:socketOut (Results 1 - 2 of 2) sorted by relevance

/external/okhttp/src/main/java/libcore/net/http/
H A DRetryableOutputStream.java69 public void writeToSocket(OutputStream socketOut) throws IOException { argument
70 content.writeTo(socketOut);
H A DHttpTransport.java41 private final OutputStream socketOut; field in class:HttpTransport
47 * This is socketOut if the request size is large or unknown.
54 this.socketOut = outputStream;
101 requestOut = socketOut;
131 requestOut = new BufferedOutputStream(socketOut, bytes.length + contentLength);
263 private final OutputStream socketOut; field in class:HttpTransport.FixedLengthOutputStream
266 private FixedLengthOutputStream(OutputStream socketOut, int bytesRemaining) { argument
267 this.socketOut = socketOut;
278 socketOut
315 private final OutputStream socketOut; field in class:HttpTransport.ChunkedOutputStream
319 ChunkedOutputStream(OutputStream socketOut, int maxChunkLength) argument
[all...]

Completed in 184 milliseconds