Lines Matching refs:URLRequest
65 URLRequestJob* URLRequest::Interceptor::MaybeInterceptRedirect( in MaybeInterceptRedirect()
66 URLRequest* request, in MaybeInterceptRedirect()
71 URLRequestJob* URLRequest::Interceptor::MaybeInterceptResponse( in MaybeInterceptResponse()
72 URLRequest* request) { in MaybeInterceptResponse()
79 void URLRequest::Delegate::OnReceivedRedirect(URLRequest* request, in OnReceivedRedirect()
84 void URLRequest::Delegate::OnAuthRequired(URLRequest* request, in OnAuthRequired()
89 void URLRequest::Delegate::OnCertificateRequested( in OnCertificateRequested()
90 URLRequest* request, in OnCertificateRequested()
95 void URLRequest::Delegate::OnSSLCertificateError(URLRequest* request, in OnSSLCertificateError()
101 void URLRequest::Delegate::OnGetCookies(URLRequest* request, in OnGetCookies()
105 void URLRequest::Delegate::OnSetCookie(URLRequest* request, in OnSetCookie()
114 URLRequest::URLRequest(const GURL& url, Delegate* delegate) in URLRequest() function in net::URLRequest
125 before_request_callback_(this, &URLRequest::BeforeRequestComplete)) { in URLRequest()
135 URLRequest::~URLRequest() { in ~URLRequest()
148 URLRequest::ProtocolFactory* URLRequest::RegisterProtocolFactory( in RegisterProtocolFactory()
155 void URLRequest::RegisterRequestInterceptor(Interceptor* interceptor) { in RegisterRequestInterceptor()
160 void URLRequest::UnregisterRequestInterceptor(Interceptor* interceptor) { in UnregisterRequestInterceptor()
165 void URLRequest::AppendBytesToUpload(const char* bytes, int bytes_len) { in AppendBytesToUpload()
172 void URLRequest::AppendFileRangeToUpload( in AppendFileRangeToUpload()
184 void URLRequest::EnableChunkedUpload() { in EnableChunkedUpload()
192 void URLRequest::AppendChunkToUpload(const char* bytes, in AppendChunkToUpload()
201 void URLRequest::set_upload(UploadData* upload) { in set_upload()
206 UploadData* URLRequest::get_upload() { in get_upload()
210 bool URLRequest::has_upload() const { in has_upload()
214 void URLRequest::SetExtraRequestHeaderById(int id, const string& value, in SetExtraRequestHeaderById()
220 void URLRequest::SetExtraRequestHeaderByName(const string& name, in SetExtraRequestHeaderByName()
227 void URLRequest::SetExtraRequestHeaders( in SetExtraRequestHeaders()
236 LoadState URLRequest::GetLoadState() const { in GetLoadState()
240 uint64 URLRequest::GetUploadProgress() const { in GetUploadProgress()
254 void URLRequest::GetResponseHeaderById(int id, string* value) { in GetResponseHeaderById()
259 void URLRequest::GetResponseHeaderByName(const string& name, string* value) { in GetResponseHeaderByName()
268 void URLRequest::GetAllResponseHeaders(string* headers) { in GetAllResponseHeaders()
277 HostPortPair URLRequest::GetSocketAddress() const { in GetSocketAddress()
282 HttpResponseHeaders* URLRequest::response_headers() const { in response_headers()
286 bool URLRequest::GetResponseCookies(ResponseCookies* cookies) { in GetResponseCookies()
291 void URLRequest::GetMimeType(string* mime_type) { in GetMimeType()
296 void URLRequest::GetCharset(string* charset) { in GetCharset()
301 int URLRequest::GetResponseCode() { in GetResponseCode()
307 bool URLRequest::IsHandledProtocol(const std::string& scheme) { in IsHandledProtocol()
312 bool URLRequest::IsHandledURL(const GURL& url) { in IsHandledURL()
322 void URLRequest::AllowFileAccess() { in AllowFileAccess()
327 bool URLRequest::IsFileAccessAllowed() { in IsFileAccessAllowed()
332 void URLRequest::set_first_party_for_cookies( in set_first_party_for_cookies()
337 void URLRequest::set_method(const std::string& method) { in set_method()
342 void URLRequest::set_referrer(const std::string& referrer) { in set_referrer()
347 GURL URLRequest::GetSanitizedReferrer() const { in GetSanitizedReferrer()
361 void URLRequest::Start() { in Start()
379 void URLRequest::BeforeRequestComplete(int error) { in BeforeRequestComplete()
395 void URLRequest::StartInternal() { in StartInternal()
399 void URLRequest::StartJob(URLRequestJob* job) { in StartJob()
425 void URLRequest::Restart() { in Restart()
431 void URLRequest::RestartWithJob(URLRequestJob *job) { in RestartWithJob()
437 void URLRequest::Cancel() { in Cancel()
441 void URLRequest::SimulateError(int os_error) { in SimulateError()
445 void URLRequest::SimulateSSLError(int os_error, const SSLInfo& ssl_info) { in SimulateSSLError()
454 void URLRequest::DoCancel(int os_error, const SSLInfo& ssl_info) { in DoCancel()
476 bool URLRequest::Read(IOBuffer* dest, int dest_size, int* bytes_read) { in Read()
496 void URLRequest::StopCaching() { in StopCaching()
501 void URLRequest::ReceivedRedirect(const GURL& location, bool* defer_redirect) { in ReceivedRedirect()
512 void URLRequest::ResponseStarted() { in ResponseStarted()
530 void URLRequest::FollowDeferredRedirect() { in FollowDeferredRedirect()
537 void URLRequest::SetAuth(const string16& username, const string16& password) { in SetAuth()
544 void URLRequest::CancelAuth() { in CancelAuth()
551 void URLRequest::ContinueWithCertificate(X509Certificate* client_cert) { in ContinueWithCertificate()
557 void URLRequest::ContinueDespiteLastError() { in ContinueDespiteLastError()
563 void URLRequest::PrepareToRestart() { in PrepareToRestart()
578 void URLRequest::OrphanJob() { in OrphanJob()
584 int URLRequest::Redirect(const GURL& location, int http_status_code) { in Redirect()
641 URLRequestContext* URLRequest::context() const { in context()
645 void URLRequest::set_context(URLRequestContext* context) { in set_context()
663 int64 URLRequest::GetExpectedContentSize() const { in GetExpectedContentSize()
671 URLRequest::UserData* URLRequest::GetUserData(const void* key) const { in GetUserData()
678 void URLRequest::SetUserData(const void* key, UserData* data) { in SetUserData()