Home
last modified time | relevance | path

Searched refs:FLAG_COMPRESSED (Results 1 – 2 of 2) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DHttp2.java73 static final byte FLAG_COMPRESSED = 0x20; // Used for data. field in Http2
220 boolean gzipped = (flags & FLAG_COMPRESSED) != 0; in readData()
698 } else if (type == TYPE_DATA && (flags & FLAG_COMPRESSED) != 0) {
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
DHttp2Test.java31 import static com.squareup.okhttp.internal.framed.Http2.FLAG_COMPRESSED;
410 frame.writeByte(FLAG_COMPRESSED); in compressedDataFrameWhenSettingDisabled()