Searched defs:response (Results 276 - 300 of 710) sorted by path

<<11121314151617181920>>

/external/chromium_org/content/renderer/media/
H A Drtc_peer_connection_handler.cc324 const LocalRTCStatsResponse* response) {
325 impl_.requestSucceeded(response->webKitStatsResponse());
323 requestSucceeded( const LocalRTCStatsResponse* response) argument
H A Dwebcontentdecryptionmodulesession_impl.cc72 void WebContentDecryptionModuleSessionImpl::update(const uint8* response, argument
123 const uint8* response,
126 DCHECK(response);
130 response,
122 update( const uint8* response, size_t response_length, blink::WebContentDecryptionModuleResult result) argument
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_impl.cc94 // we receive HTTP status code 206 in the HTTP response. This indicates
95 // that the response could have multiple parts each separated by a boundary
96 // specified in the response header.
108 // response.
110 WebURLLoader*, const WebURLResponse& response) {
113 response,
121 // Receives individual part data from a multipart response.
165 std::string GetAllHeaders(const WebURLResponse& response) { argument
167 // an interesting response, so this check seems wrong.
169 const WebString& status = response
109 didReceiveResponse( WebURLLoader*, const WebURLResponse& response) argument
191 GetResponseInfo(const WebURLResponse& response, ResponseInfo* response_info) argument
423 didReceiveResponse(const WebURLResponse& response) argument
494 didReceiveResponse( blink::WebURLLoader* loader, const blink::WebURLResponse& response) argument
908 willSendRequest(WebURLLoader* loader, WebURLRequest& request, const WebURLResponse& response) argument
956 didReceiveResponse(WebURLLoader* loader, const WebURLResponse& response) argument
1394 HandleHttpMultipartResponse( const WebURLResponse& response, WebPluginResourceClient* client) argument
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dcontent_decryptor_delegate.cc402 const uint8* response,
408 response_length, response);
400 UpdateSession( const std::string& web_session_id, const uint8* response, int response_length, scoped_ptr<SimpleCdmPromise> promise) argument
H A Dpepper_plugin_instance_impl.cc903 const blink::WebURLResponse& response) {
906 // The external proxy isn't available, so save the response and record
908 external_document_response_ = response;
932 loader_host->didReceiveResponse(NULL, response);
945 response,
948 response,
3038 // Pass the response to the new proxy.
3361 const blink::WebURLResponse& response,
902 HandleDocumentLoad( const blink::WebURLResponse& response) argument
3360 DidDataFromWebURLResponse( const blink::WebURLResponse& response, int pending_host_id, const ppapi::URLResponseInfoData& data) argument
H A Dpepper_url_loader_host.cc143 const WebURLResponse& response) {
145 total_bytes_to_be_received_ = response.expectedContentLength();
148 SaveResponse(response);
392 void PepperURLLoaderHost::SaveResponse(const WebURLResponse& response) { argument
393 // When we're the main document loader, we send the response data up front,
395 // expected. We should not be getting redirects so the response sent
399 // We note when there's a callback in flight for a response to ensure that
408 response,
142 didReceiveResponse(WebURLLoader* loader, const WebURLResponse& response) argument
H A Dpepper_webplugin_impl.cc191 const blink::WebURLResponse& response) {
193 instance_->HandleDocumentLoad(response);
190 didReceiveResponse( const blink::WebURLResponse& response) argument
H A Durl_response_info_util.cc73 const WebURLResponse& response,
76 data.url = response.url().spec();
77 data.status_code = response.httpStatusCode();
78 data.status_text = response.httpStatusText().utf8();
81 response.httpHeaderField(WebString::fromUTF8("Location")).utf8();
85 response.visitHTTPHeaderFields(&flattener);
88 WebString file_path = response.downloadFilePath();
71 DataFromWebURLResponse(RendererPpapiHostImpl* host_impl, PP_Instance pp_instance, const WebURLResponse& response, const DataFromWebURLResponseCallback& callback) argument
/external/chromium_org/content/renderer/
H A Drender_frame_impl.cc219 const WebURLResponse& response) {
220 return static_cast<WebURLResponseExtraDataImpl*>(response.extraData());
1537 GetExtraDataFromResponse(frame_->dataSource()->response());
2547 // response as RunJavaScriptMessage.
2811 const blink::WebURLResponse& response) {
2815 // can't have any sub-resources yet, so we know that this response must
2827 int http_status_code = response.httpStatusCode();
2830 WebURLResponseExtraDataImpl* extra_data = GetExtraDataFromResponse(response);
2882 const blink::WebURLResponse& response) {
2897 response
218 GetExtraDataFromResponse( const WebURLResponse& response) argument
2808 didReceiveResponse( blink::WebLocalFrame* frame, unsigned identifier, const blink::WebURLResponse& response) argument
2879 didLoadResourceFromMemoryCache( blink::WebLocalFrame* frame, const blink::WebURLRequest& request, const blink::WebURLResponse& response) argument
3263 const WebURLResponse& response = ds->response(); local
[all...]
H A Dresource_fetcher_browsertest.cc57 virtual void OnURLFetchComplete(const WebURLResponse& response, argument
59 response_ = response;
71 const WebURLResponse& response() const { return response_; } function in class:content::FetcherDelegate
117 virtual void OnURLFetchComplete(const WebURLResponse& response,
119 FetcherDelegate::OnURLFetchComplete(response, data);
124 // invalidates |response| and |data|.
162 EXPECT_EQ(delegate->response().httpStatusCode(), 200);
181 EXPECT_EQ(delegate->response().httpStatusCode(), 404);
203 EXPECT_TRUE(delegate->response().isNull());
225 EXPECT_TRUE(delegate->response()
[all...]
H A Dweb_ui_mojo_context_state.cc111 const blink::WebURLResponse& response,
114 response.url().string().utf8().substr(0, arraysize(kModulePrefix) - 1));
116 response.url().string().utf8().substr(arraysize(kModulePrefix) - 1);
109 OnFetchModuleComplete( ResourceFetcher* fetcher, const blink::WebURLResponse& response, const std::string& data) argument
/external/chromium_org/content/renderer/service_worker/
H A Dservice_worker_cache_storage_dispatcher.cc95 const ServiceWorkerResponse& response,
97 web_response->setURL(response.url);
98 web_response->setStatus(response.status_code);
99 web_response->setStatusText(base::ASCIIToUTF16(response.status_text));
100 for (ServiceWorkerHeaderMap::const_iterator i = response.headers.begin(),
101 end = response.headers.end();
147 operation.response = ResponseFromWebResponse(web_operation.response);
377 const ServiceWorkerResponse& response) {
382 PopulateWebResponseFromResponse(response,
94 PopulateWebResponseFromResponse( const ServiceWorkerResponse& response, blink::WebServiceWorkerResponse* web_response) argument
375 OnCacheMatchSuccess( int request_id, const ServiceWorkerResponse& response) argument
[all...]
H A Dservice_worker_script_context.cc90 const ServiceWorkerResponse& response) {
92 GetRoutingID(), request_id, result, response));
209 NOTREACHED() << "Got stray response: " << request_id;
87 DidHandleFetchEvent( int request_id, ServiceWorkerFetchEventResult result, const ServiceWorkerResponse& response) argument
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_webrtc_peer_connection_handler.cc64 const blink::WebRTCStatsResponse& response)
67 response_(response) {}
279 WebRTCStatsResponse response = request.createResponse(); local
285 response.addReport("Mock video", "ssrc", current_date);
286 response.addStatistic(report_index, "type", "video");
290 response.addReport("Mock audio", "ssrc", current_date);
291 response.addStatistic(report_index, "type", "audio");
292 report_index = response.addReport("Mock video", "ssrc", current_date);
293 response.addStatistic(report_index, "type", "video");
297 new RTCStatsRequestSucceededTask(this, request, response));
62 RTCStatsRequestSucceededTask(MockWebRTCPeerConnectionHandler* object, const blink::WebRTCStatsRequest& request, const blink::WebRTCStatsResponse& response) argument
[all...]
H A Dtest_plugin.h76 virtual void didReceiveResponse(const blink::WebURLResponse& response) {} argument
H A Dtest_runner.cc2846 const blink::WebURLResponse& response,
2919 web_view_->mainFrame()->dataSource()->response().mimeType().utf8();
2845 GetManifestCallback(scoped_ptr<InvokeCallbackTask> task, const blink::WebURLResponse& response, const std::string& data) argument
H A Dweb_frame_test_proxy.h223 const blink::WebURLResponse& response) {
224 base_proxy_->DidReceiveResponse(frame, identifier, response);
225 Base::didReceiveResponse(frame, identifier, response);
221 didReceiveResponse(blink::WebLocalFrame* frame, unsigned identifier, const blink::WebURLResponse& response) argument
H A Dweb_test_proxy.cc140 const blink::WebURLResponse& response) {
141 if (response.isNull()) {
147 DescriptionSuitableForTestResult(response.url().spec()).c_str(),
148 response.httpStatusCode()));
1183 const blink::WebURLResponse& response) {
1191 PrintResponseDescription(delegate_, response);
1196 GURL url = response.url();
1197 blink::WebString mime_type = response.mimeType();
1291 std::string mime_type = frame->dataSource()->response().mimeType().utf8();
139 PrintResponseDescription(WebTestDelegate* delegate, const blink::WebURLResponse& response) argument
1180 DidReceiveResponse( blink::WebLocalFrame* frame, unsigned identifier, const blink::WebURLResponse& response) argument
/external/chromium_org/content/test/
H A Dlayouttest_support.cc90 const blink::WebURLResponse& response,
93 callback.Run(response, data);
87 FetchManifestDoneCallback( scoped_ptr<ManifestFetcher> fetcher, const FetchManifestCallback& callback, const blink::WebURLResponse& response, const std::string& data) argument
H A Dtest_webkit_platform_support.cc251 const blink::WebURLResponse& response,
253 url_loader_factory_->RegisterURL(url, response, file_path);
258 const blink::WebURLResponse& response,
260 url_loader_factory_->RegisterErrorURL(url, response, error);
249 registerMockedURL( const blink::WebURL& url, const blink::WebURLResponse& response, const blink::WebString& file_path) argument
256 registerMockedErrorURL( const blink::WebURL& url, const blink::WebURLResponse& response, const blink::WebURLError& error) argument
H A Dweburl_loader_mock.cc31 const blink::WebURLResponse& response,
40 client_->didReceiveResponse(this, response);
69 blink::WebURLResponse& response,
73 factory_->LoadSynchronously(request, &response, &error, &data);
80 default_loader_->loadSynchronously(request, response, error, data);
30 ServeAsynchronousRequest( const blink::WebURLResponse& response, const blink::WebData& data, const blink::WebURLError& error) argument
68 loadSynchronously(const blink::WebURLRequest& request, blink::WebURLResponse& response, blink::WebURLError& error, blink::WebData& data) argument
H A Dweburl_loader_mock_factory.cc31 const WebURLResponse& response,
34 response_info.response = response;
55 const WebURLResponse& response,
58 RegisterURL(url, response, WebString());
86 WebURLResponse response; local
90 LoadRequest(request, &response, &error, &data);
92 while (response.httpStatusCode() >= 300 &&
93 response.httpStatusCode() < 400) {
94 WebURLRequest newRequest = loader->ServeRedirect(response);
30 RegisterURL(const WebURL& url, const WebURLResponse& response, const WebString& file_path) argument
54 RegisterErrorURL(const WebURL& url, const WebURLResponse& response, const WebURLError& error) argument
130 LoadSynchronously(const WebURLRequest& request, WebURLResponse* response, WebURLError* error, WebData* data) argument
144 LoadRequest(const WebURLRequest& request, WebURLResponse* response, WebURLError* error, WebData* data) argument
[all...]
H A Dweburl_loader_mock_factory.h40 // Registers a response and the contents to be served when the specified URL
43 const blink::WebURLResponse& response,
48 const blink::WebURLResponse& response,
68 blink::WebURLResponse* response,
79 blink::WebURLResponse response; member in struct:WebURLLoaderMockFactory::ResponseInfo
84 // Loads the specified request and populates the response, error and data
87 blink::WebURLResponse* response,
/external/chromium_org/dbus/
H A Dend_to_end_async_unittest.cc156 // response is received.
166 // response is received without error, otherwise OnError() will be called.
184 // Called when the response is received.
185 void OnResponse(Response* response) { argument
186 // |response| will be deleted on exit of the function. Copy the
188 if (response) {
189 MessageReader reader(response);
292 // Check the response.
309 // Check the response.
445 // Check the response
[all...]
H A Dexported_object.cc226 // It's valid to say HANDLED here, and send a method response at a later
245 scoped_ptr<Response> response) {
253 base::Passed(&response),
256 OnMethodCompleted(method_call.Pass(), response.Pass(), start_time);
261 scoped_ptr<Response> response,
267 response ? 1 : 0,
275 if (!response) {
287 bus_->Send(response->raw_message(), NULL);
243 SendResponse(base::TimeTicks start_time, scoped_ptr<MethodCall> method_call, scoped_ptr<Response> response) argument
260 OnMethodCompleted(scoped_ptr<MethodCall> method_call, scoped_ptr<Response> response, base::TimeTicks start_time) argument

Completed in 7540 milliseconds

<<11121314151617181920>>