Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:cacheResponse
(Results
1 - 10
of
10
) sorted by relevance
/foundation/communication/netstack/frameworks/cj/http/src/
H
A
D
net_http_cache_proxy.cpp
100
std::unordered_map<std::string, std::string>
cacheResponse
;
in WriteResponseToCache()
local
101
cacheResponse
[RESPONSE_KEY_HEADER] = Encode(response.GetRawHeader());
in WriteResponseToCache()
102
cacheResponse
[RESPONSE_KEY_RESULT] = Encode(response.GetResult());
in WriteResponseToCache()
103
cacheResponse
[RESPONSE_KEY_COOKIES] = Encode(response.GetCookies());
in WriteResponseToCache()
104
cacheResponse
[RESPONSE_TIME] = Encode(response.GetResponseTime());
in WriteResponseToCache()
105
cacheResponse
[REQUEST_TIME] = Encode(response.GetRequestTime());
in WriteResponseToCache()
107
g_cjDiskLruCache.Put(key_,
cacheResponse
);
in WriteResponseToCache()
H
A
D
net_http_cache_strategy.cpp
196
bool HttpCacheStrategy::IsCacheable(const HttpCacheResponse &
cacheResponse
)
in IsCacheable()
argument
198
switch (
cacheResponse
.GetRespCode()) {
in IsCacheable()
213
if (
cacheResponse
.GetExpires() != INVALID_TIME ||
cacheResponse
.GetMaxAgeSeconds() != INVALID_TIME ||
in IsCacheable()
214
cacheResponse
.IsPublicCache() ||
cacheResponse
.IsPrivateCache()) {
in IsCacheable()
223
return !
cacheResponse
.IsNoStore() && !cacheRequest_.IsNoStore();
in IsCacheable()
H
A
D
net_http_request_context.cpp
134
void RequestContext::SetCacheResponse(const HttpResponse &
cacheResponse
)
in SetCacheResponse()
argument
136
cacheResponse_ =
cacheResponse
;
in SetCacheResponse()
/foundation/communication/netstack/frameworks/js/napi/http/cache/cache_proxy/src/
H
A
D
cache_proxy.cpp
111
std::unordered_map<std::string, std::string>
cacheResponse
;
in WriteResponseToCache()
local
112
cacheResponse
[HttpConstant::RESPONSE_KEY_HEADER] = Base64::Encode(response.GetRawHeader());
in WriteResponseToCache()
113
cacheResponse
[HttpConstant::RESPONSE_KEY_RESULT] = Base64::Encode(response.GetResult());
in WriteResponseToCache()
114
cacheResponse
[HttpConstant::RESPONSE_KEY_COOKIES] = Base64::Encode(response.GetCookies());
in WriteResponseToCache()
115
cacheResponse
[HttpConstant::RESPONSE_TIME] = Base64::Encode(response.GetResponseTime());
in WriteResponseToCache()
116
cacheResponse
[HttpConstant::REQUEST_TIME] = Base64::Encode(response.GetRequestTime());
in WriteResponseToCache()
118
DISK_LRU_CACHE.Put(key_,
cacheResponse
);
in WriteResponseToCache()
/foundation/communication/netstack/frameworks/js/napi/http/cache/cache_strategy/src/
H
A
D
http_cache_strategy.cpp
198
bool HttpCacheStrategy::IsCacheable(const HttpCacheResponse &
cacheResponse
)
in IsCacheable()
argument
200
switch (
cacheResponse
.GetRespCode()) {
in IsCacheable()
215
if (
cacheResponse
.GetExpires() != INVALID_TIME ||
cacheResponse
.GetMaxAgeSeconds() != INVALID_TIME ||
in IsCacheable()
216
cacheResponse
.IsPublicCache() ||
cacheResponse
.IsPrivateCache()) {
in IsCacheable()
225
return !
cacheResponse
.IsNoStore() && !cacheRequest_.IsNoStore();
in IsCacheable()
/foundation/communication/netstack/frameworks/js/napi/http/cache/cache_strategy/include/
H
A
D
http_cache_strategy.h
50
bool IsCacheable(const HttpCacheResponse &
cacheResponse
);
/foundation/communication/netstack/frameworks/cj/http/include/
H
A
D
net_http_cache_strategy.h
49
bool IsCacheable(const HttpCacheResponse &
cacheResponse
);
H
A
D
net_http_request_context.h
77
void SetCacheResponse(const HttpResponse &
cacheResponse
);
/foundation/communication/netstack/frameworks/js/napi/http/async_context/include/
H
A
D
request_context.h
77
void SetCacheResponse(const HttpResponse &
cacheResponse
);
/foundation/communication/netstack/frameworks/js/napi/http/async_context/src/
H
A
D
request_context.cpp
492
void RequestContext::SetCacheResponse(const HttpResponse &
cacheResponse
)
in SetCacheResponse()
argument
494
cacheResponse_ =
cacheResponse
;
in SetCacheResponse()
Completed in 6 milliseconds