OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cacheControl
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/wml/
WMLGoElement.h
47
void preparePOSTRequest(ResourceRequest&, bool inSameDeck, const String&
cacheControl
);
WMLGoElement.cpp
134
String
cacheControl
= getAttribute(cache_controlAttr);
137
preparePOSTRequest(request, inSameDeck,
cacheControl
);
142
if (!
cacheControl
.isEmpty()) {
143
request.setHTTPHeaderField("cache-control",
cacheControl
);
145
if (
cacheControl
== "no-cache")
152
void WMLGoElement::preparePOSTRequest(ResourceRequest& request, bool inSameDeck, const String&
cacheControl
)
156
if (inSameDeck &&
cacheControl
!= "no-cache") {
/frameworks/base/core/java/android/webkit/
CacheManager.java
857
String
cacheControl
= headers.getCacheControl();
858
if (
cacheControl
!= null) {
859
String[] controls =
cacheControl
.toLowerCase().split("[ ,;]");
[
all
...]
Completed in 5290 milliseconds