OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SMALL_BUFFERS
(Results
1 - 2
of
2
) sorted by null
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
URLConnectionTest.java
426
enum WriteKind {BYTE_BY_BYTE,
SMALL_BUFFERS
, LARGE_BUFFERS}
433
doUpload(TransferKind.CHUNKED, WriteKind.
SMALL_BUFFERS
);
445
doUpload(TransferKind.FIXED_LENGTH, WriteKind.
SMALL_BUFFERS
);
471
byte[] buf = new byte[writeKind == WriteKind.
SMALL_BUFFERS
? 256 : 64 * 1024];
[
all
...]
/libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java
443
enum WriteKind { BYTE_BY_BYTE,
SMALL_BUFFERS
, LARGE_BUFFERS }
450
doUpload(TransferKind.CHUNKED, WriteKind.
SMALL_BUFFERS
);
462
doUpload(TransferKind.FIXED_LENGTH, WriteKind.
SMALL_BUFFERS
);
489
byte[] buf = new byte[writeKind == WriteKind.
SMALL_BUFFERS
? 256 : 64*1024];
[
all
...]
Completed in 2779 milliseconds