Home | History | Annotate | Download | only in win

Lines Matching refs:request

62 static CFURLRequestRef willSendRequestCallback(CFURLDownloadRef download, CFURLRequestRef request, CFURLResponseRef redirectionResponse, const void *clientInfo);
73 void WebDownload::init(ResourceHandle* handle, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate)
86 m_request.adoptRef(WebMutableURLRequest::createInstance(request));
87 m_download.adoptCF(CFURLDownloadCreateAndStartWithLoadingConnection(0, connection, request.cfURLRequest(), response.cfURLResponse(), &client));
93 LOG_ERROR("WebDownload - Failed to create WebDownload from existing connection (%s)", request.url().string().utf8().data());
95 LOG(Download, "WebDownload - Created WebDownload %p from existing connection (%s)", this, request.url().string().utf8().data());
109 ResourceRequest request(url);
110 CFURLRequestRef cfRequest = request.cfURLRequest();
115 m_request.adoptRef(WebMutableURLRequest::createInstance(request));
127 /* [in] */ IWebURLRequest* request,
131 if (!request || FAILED(request->QueryInterface(&webRequest))) {
362 CFURLRequestRef WebDownload::willSendRequest(CFURLRequestRef request, CFURLResponseRef response)
364 COMPtr<WebMutableURLRequest> webRequest(AdoptCOM, WebMutableURLRequest::createInstance(ResourceRequest(request)));
519 CFURLRequestRef willSendRequestCallback(CFURLDownloadRef, CFURLRequestRef request, CFURLResponseRef redirectionResponse, const void *clientInfo)
520 { return ((WebDownload*)clientInfo)->willSendRequest(request, redirectionResponse); }