OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bytesLeftInWriteWindow
(Results
1 - 3
of
3
) sorted by null
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
FramedStream.java
50
* available bytes in {@code connection.
bytesLeftInWriteWindow
}.
53
long
bytesLeftInWriteWindow
;
82
this.
bytesLeftInWriteWindow
=
504
while (
bytesLeftInWriteWindow
<= 0 && !finished && !closed && errorCode == null) {
512
toWrite = Math.min(
bytesLeftInWriteWindow
, sendBuffer.size());
513
bytesLeftInWriteWindow
-= toWrite;
568
bytesLeftInWriteWindow
+= delta;
FramedConnection.java
111
long
bytesLeftInWriteWindow
;
169
bytesLeftInWriteWindow
= peerSettings.getInitialWindowSize(DEFAULT_INITIAL_WINDOW_SIZE);
313
while (
bytesLeftInWriteWindow
<= 0) {
325
toWrite = (int) Math.min(byteCount,
bytesLeftInWriteWindow
);
327
bytesLeftInWriteWindow
-= toWrite;
340
bytesLeftInWriteWindow
+= delta;
766
bytesLeftInWriteWindow
+= windowSizeIncrement;
/prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar
Completed in 65 milliseconds