Home
last modified time | relevance | path

Searched defs:forWebSocket (Results 1 – 3 of 3) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DCall.java108 void enqueue(Callback responseCallback, boolean forWebSocket) { in enqueue()
131 private final boolean forWebSocket; field in Call.AsyncCall
133 private AsyncCall(Callback responseCallback, boolean forWebSocket) { in AsyncCall()
193 private Response getResponseWithInterceptorChain(boolean forWebSocket) throws IOException { in getResponseWithInterceptorChain()
201 private final boolean forWebSocket; field in Call.ApplicationInterceptorChain
203 ApplicationInterceptorChain(int index, Request request, boolean forWebSocket) { in ApplicationInterceptorChain()
233 Response getResponse(Request request, boolean forWebSocket) throws IOException { in getResponse()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DHttpEngine.java169 private final boolean forWebSocket; field in HttpEngine
187 boolean callerWritesRequestBody, boolean forWebSocket, Connection connection, in HttpEngine()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DInternal.java95 public abstract void callEnqueue(Call call, Callback responseCallback, boolean forWebSocket); in callEnqueue()