OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FollowRedirect
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/ppapi/c/
ppb_url_loader.h
96
*
FollowRedirect
() can be invoked to follow a redirect after Open()
102
* asynchronous completion of
FollowRedirect
(). This callback will run when
104
* callback will only run if
FollowRedirect
() returns
109
int32_t (*
FollowRedirect
)(PP_Resource loader,
/external/chromium_org/ppapi/cpp/
url_loader.cc
49
int32_t URLLoader::
FollowRedirect
(const CompletionCallback& cc) {
52
return get_interface<PPB_URLLoader_1_0>()->
FollowRedirect
(
/external/chromium_org/ppapi/thunk/
ppb_url_loader_thunk.cc
48
int32_t
FollowRedirect
(PP_Resource loader,
50
VLOG(4) << "PPB_URLLoader::
FollowRedirect
()";
54
return enter.SetResult(enter.object()->
FollowRedirect
(enter.callback()));
127
&
FollowRedirect
,
/external/chromium_org/ppapi/proxy/
url_loader_resource.cc
110
int32_t URLLoaderResource::
FollowRedirect
(
/external/chromium/net/url_request/
url_request_job.cc
179
// such an URL will fail inside
FollowRedirect
. The DCHECK above asserts
182
// It is also possible that
FollowRedirect
will drop the last reference to
191
FollowRedirect
(redirect_url, redirect_status_code);
261
FollowRedirect
(new_location, http_status_code);
586
void URLRequestJob::
FollowRedirect
(const GURL& location, int http_status_code) {
/external/chromium_org/net/url_request/
url_request_job.cc
201
// such an URL will fail inside
FollowRedirect
. The DCHECK above asserts
204
// It is also possible that
FollowRedirect
will drop the last reference to
213
FollowRedirect
(redirect_url, redirect_status_code);
338
FollowRedirect
(new_location, http_status_code);
701
void URLRequestJob::
FollowRedirect
(const GURL& location, int http_status_code) {
Completed in 704 milliseconds