OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cachePolicy
(Results
1 - 2
of
2
) sorted by null
/libcore/ojluni/src/main/java/sun/net/
InetAddressCachePolicy.java
64
private static int
cachePolicy
= FOREVER;
106
cachePolicy
= tmp.intValue();
107
if (
cachePolicy
< 0) {
108
cachePolicy
= FOREVER;
115
cachePolicy
= tmp.intValue();
116
if (
cachePolicy
< 0) {
117
cachePolicy
= FOREVER;
125
cachePolicy
= DEFAULT_POSITIVE;
162
return
cachePolicy
;
183
checkValue(newPolicy,
cachePolicy
);
[
all
...]
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
URLFetcher.java
166
Cache.Entry
cachePolicy
= HttpHeaderParser.parseCacheHeaders(response);
168
if (
cachePolicy
== null) {
171
} else if (
cachePolicy
.ttl == 0) {
175
//
cachePolicy
.ttl is actually the expire timestamp in millisecond.
176
return
cachePolicy
.ttl;
Completed in 101 milliseconds