OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cachelength
(Results
1 - 1
of
1
) sorted by null
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpURLConnectionImpl.java
584
private int
cacheLength
;
591
cacheLength
= defaultCacheSize;
592
cache = new ByteArrayOutputStream(
cacheLength
);
600
cacheLength
= limit;
606
cacheLength
= calculateChunkDataLength();
608
cache = new ByteArrayOutputStream(
cacheLength
);
722
if (writeToSocket && cache.size() >=
cacheLength
) {
749
if (!writeToSocket || cache.size() + count <
cacheLength
) {
752
writeHex(
cacheLength
);
754
int writeNum =
cacheLength
- cache.size()
[
all
...]
Completed in 19 milliseconds