OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UPLOAD_BANDWIDTH
(Results
1 - 3
of
3
) sorted by null
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Settings.java
40
static final int
UPLOAD_BANDWIDTH
= 1;
133
int bit = 1 <<
UPLOAD_BANDWIDTH
;
134
return (bit & set) != 0 ? values[
UPLOAD_BANDWIDTH
] : defaultValue;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
SettingsTest.java
26
import static com.squareup.okhttp.internal.spdy.Settings.
UPLOAD_BANDWIDTH
;
43
settings.set(
UPLOAD_BANDWIDTH
, 0, 42);
146
a.set(
UPLOAD_BANDWIDTH
, PERSIST_VALUE, 100);
157
assertEquals(PERSIST_VALUE, a.flags(
UPLOAD_BANDWIDTH
));
SpdyConnectionTest.java
379
settings1.set(Settings.
UPLOAD_BANDWIDTH
, PERSIST_VALUE, 100);
398
assertEquals(PERSIST_VALUE, connection.peerSettings.flags(Settings.
UPLOAD_BANDWIDTH
));
411
settings1.set(Settings.
UPLOAD_BANDWIDTH
, PERSIST_VALUE, 100);
[
all
...]
Completed in 47 milliseconds