HomeSort by relevance Sort by last modified time
    Searched defs:ioException (Results 1 - 4 of 4) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Platform.java 20 import java.io.IOException;
125 int connectTimeout) throws IOException {
234 int connectTimeout) throws IOException {
240 IOException ioException = new IOException("Exception in connect");
241 ioException.initCause(se);
242 throw ioException;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Http20Draft09.java 19 import java.io.IOException;
86 @Override public void readConnectionHeader() throws IOException {
90 throw ioException("Expected a connection header but was %s", connectionHeader.utf8());
94 @Override public boolean nextFrame(Handler handler) throws IOException {
100 } catch (IOException e) {
156 throws IOException {
157 if (streamId == 0) throw ioException("PROTOCOL_ERROR: TYPE_HEADERS streamId == 0");
174 throws IOException {
187 throws IOException {
194 throws IOException {
    [all...]
Spdy3.java 20 import java.io.IOException;
129 @Override public boolean nextFrame(Handler handler) throws IOException {
135 } catch (IOException e) {
196 private void readSynStream(Handler handler, int flags, int length) throws IOException {
212 private void readSynReply(Handler handler, int flags, int length) throws IOException {
220 private void readRstStream(Handler handler, int flags, int length) throws IOException {
221 if (length != 8) throw ioException("TYPE_RST_STREAM length: %d != 8", length);
226 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt);
231 private void readHeaders(Handler handler, int flags, int length) throws IOException {
238 private void readWindowUpdate(Handler handler, int flags, int length) throws IOException {
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 188 milliseconds