Home
last modified time | relevance | path

Searched refs:forWebSocket (Results 1 – 4 of 4) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DCall.java109 void enqueue(Callback responseCallback, boolean forWebSocket) { in enqueue() argument
114 client.getDispatcher().enqueue(new AsyncCall(responseCallback, forWebSocket)); in enqueue()
140 private final boolean forWebSocket; field in Call.AsyncCall
142 private AsyncCall(Callback responseCallback, boolean forWebSocket) { in AsyncCall() argument
145 this.forWebSocket = forWebSocket; in AsyncCall()
171 Response response = getResponseWithInterceptorChain(forWebSocket); in execute()
203 private Response getResponseWithInterceptorChain(boolean forWebSocket) throws IOException { in getResponseWithInterceptorChain() argument
204 Interceptor.Chain chain = new ApplicationInterceptorChain(0, originalRequest, forWebSocket); in getResponseWithInterceptorChain()
211 private final boolean forWebSocket; field in Call.ApplicationInterceptorChain
213 ApplicationInterceptorChain(int index, Request request, boolean forWebSocket) { in ApplicationInterceptorChain() argument
[all …]
DOkHttpClient.java97 public void callEnqueue(Call call, Callback responseCallback, boolean forWebSocket) {
98 call.enqueue(responseCallback, forWebSocket);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DHttpEngine.java159 private final boolean forWebSocket; field in HttpEngine
173 boolean callerWritesRequestBody, boolean forWebSocket, StreamAllocation streamAllocation, in HttpEngine() argument
179 this.forWebSocket = forWebSocket; in HttpEngine()
358 forWebSocket, streamAllocation, (RetryableSink) requestBodyOut, priorResponse); in recover()
380 forWebSocket, streamAllocation, (RetryableSink) requestBodyOut, priorResponse); in recover()
571 if (forWebSocket) { in readResponse()
744 if (!forWebSocket) { in readNetworkResponse()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DInternal.java72 public abstract void callEnqueue(Call call, Callback responseCallback, boolean forWebSocket); in callEnqueue() argument