Searched defs:prefixMask (Results 1 - 2 of 2) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHpackDraft05.java340 int readInt(int firstByte, int prefixMask) throws IOException { argument
341 int prefix = firstByte & prefixMask;
342 if (prefix < prefixMask) {
347 int result = prefixMask;
423 void writeInt(int value, int prefixMask, int bits) throws IOException { argument
425 if (value < prefixMask) {
431 out.writeByte(bits | prefixMask);
432 value -= prefixMask;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHpackDraft05Test.java820 @Test public void prefixMask() throws IOException { method in class:HpackDraft05Test

Completed in 137 milliseconds