OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:http_info
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/content/browser/service_worker/
service_worker_read_from_cache_job.cc
81
if (!
http_info
())
83
return
http_info
()->headers->GetCharset(charset);
87
if (!
http_info
())
89
return
http_info
()->headers->GetMimeType(mime_type);
94
if (!
http_info
())
96
*info = *
http_info
();
100
if (!
http_info
())
102
return
http_info
()->headers->response_code();
138
const net::HttpResponseInfo* ServiceWorkerReadFromCacheJob::
http_info
() const {
function in class:content::ServiceWorkerReadFromCacheJob
148
if (!http_info_io_buffer_->
http_info
) {
[
all
...]
service_worker_write_to_cache_job.cc
89
if (!
http_info
())
91
return
http_info
()->headers->GetCharset(charset);
95
if (!
http_info
())
97
return
http_info
()->headers->GetMimeType(mime_type);
102
if (!
http_info
())
104
*info = *
http_info
();
108
if (!
http_info
())
110
return
http_info
()->headers->response_code();
137
const net::HttpResponseInfo* ServiceWorkerWriteToCacheJob::
http_info
() const {
function in class:content::ServiceWorkerWriteToCacheJob
226
http_info_.reset(info_buffer_->
http_info
.release())
[
all
...]
service_worker_url_request_job.cc
78
if (!
http_info
())
80
return
http_info
()->headers->GetCharset(charset);
84
if (!
http_info
())
86
return
http_info
()->headers->GetMimeType(mime_type);
90
if (!
http_info
())
92
*info = *
http_info
();
102
if (!
http_info
())
104
return
http_info
()->headers->response_code();
186
const net::HttpResponseInfo* ServiceWorkerURLRequestJob::
http_info
() const {
function in class:content::ServiceWorkerURLRequestJob
/external/chromium_org/content/browser/appcache/
appcache_url_request_job.cc
301
const net::HttpResponseInfo* AppCacheURLRequestJob::
http_info
() const {
function in class:content::AppCacheURLRequestJob
398
if (!
http_info
())
400
return
http_info
()->headers->GetMimeType(mime_type);
404
if (!
http_info
())
406
return
http_info
()->headers->GetCharset(charset);
410
if (!
http_info
())
412
*info = *
http_info
();
416
if (!
http_info
())
418
return
http_info
()->headers->response_code();
appcache_response.h
33
// AppCacheResponseInfo takes ownership of the
http_info
.
35
int64 response_id, net::HttpResponseInfo*
http_info
,
60
scoped_ptr<net::HttpResponseInfo>
http_info
;
member in struct:content::HttpResponseInfoIOBuffer
145
// contain a NULL
http_info
when ReadInfo is called. The 'callback' is a
appcache_update_job.cc
1383
const net::HttpResponseInfo*
http_info
= response_info ?
local
[
all
...]
appcache_update_job_unittest.cc
3085
net::HttpResponseInfo*
http_info
= new net::HttpResponseInfo();
local
[
all
...]
Completed in 8227 milliseconds