Searched refs:DOWNLOAD_BANDWIDTH (Results 1 - 3 of 3) sorted by relevance
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
H A D | Settings.java | 36 static final int DOWNLOAD_BANDWIDTH = 0x2; field in class:Settings 115 int bit = 1 << DOWNLOAD_BANDWIDTH; 116 return (bit & set) != 0 ? values[DOWNLOAD_BANDWIDTH] : defaultValue;
|
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/ |
H A D | SettingsTest.java | 20 import static com.squareup.okhttp.internal.spdy.Settings.DOWNLOAD_BANDWIDTH; 44 settings.set(Settings.DOWNLOAD_BANDWIDTH, 0, 53); 137 a.set(DOWNLOAD_BANDWIDTH, PERSIST_VALUE, 200); 141 b.set(DOWNLOAD_BANDWIDTH, 0, 400); 149 assertEquals(0, a.flags(DOWNLOAD_BANDWIDTH));
|
H A D | SpdyConnectionTest.java | 278 settings1.set(Settings.DOWNLOAD_BANDWIDTH, PERSIST_VALUE, 200); 282 settings2.set(Settings.DOWNLOAD_BANDWIDTH, 0, 400); 300 assertEquals(0, connection.settings.flags(Settings.DOWNLOAD_BANDWIDTH));
|
Completed in 62 milliseconds