Home
last modified time | relevance | path

Searched refs:TYPE_CONTINUATION (Results 1 – 3 of 3) sorted by relevance

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
DHttp2FrameLoggerTest.java29 import static com.squareup.okhttp.internal.spdy.Http2.TYPE_CONTINUATION;
77 formatHeader(true, 3, 10000, TYPE_CONTINUATION, (byte) 0x4)); in flagOverlapOn0x4()
DHttp2Test.java131 frame.writeByte(Http2.TYPE_CONTINUATION); in headersFrameThenContinuation()
201 frame.writeByte(Http2.TYPE_CONTINUATION); in pushPromiseThenContinuation()
509 frame.writeByte(Http2.TYPE_CONTINUATION); in readPaddedHeadersFrameThenContinuation()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
DHttp2.java64 static final byte TYPE_CONTINUATION = 0x9; field in Http2
462 frameHeader(streamId, length, TYPE_CONTINUATION, byteCount == 0 ? FLAG_END_HEADERS : 0); in writeContinuationFrames()
638 if (type != TYPE_CONTINUATION) throw ioException("%s != TYPE_CONTINUATION", type); in readContinuationHeader()