Searched defs:response (Results 126 - 150 of 710) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/policy/cloud/
H A Ddevice_management_service_browsertest.cc46 em::DeviceManagementResponse response; local
48 response.mutable_register_response()->set_device_management_token(
51 response.mutable_service_api_access_response()->set_auth_code(
54 response.mutable_unregister_response();
56 response.mutable_policy_response()->add_response();
58 response.mutable_auto_enrollment_response();
62 ASSERT_TRUE(response.SerializeToString(response_data));
114 const em::DeviceManagementResponse& response) {
115 robot_auth_code_ = response.service_api_access_response().auth_code();
166 const em::DeviceManagementResponse& response) {
112 RecordAuthCode(DeviceManagementStatus status, int net_error, const em::DeviceManagementResponse& response) argument
164 RecordToken(DeviceManagementStatus status, int net_error, const em::DeviceManagementResponse& response) argument
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dtwo_phase_uploader_unittest.cc33 const std::string& response) {
37 response_ = response;
29 FinishCallback(scoped_refptr<MessageLoopRunner> runner, TwoPhaseUploader::State state, int net_error, int response_code, const std::string& response) argument
/external/chromium_org/chrome/browser/ui/webui/
H A Dprofiler_ui.cc83 // Read the file synchronously and send it as the response.
88 scoped_refptr<base::RefCountedString> response = variable
90 response->data() = file_contents;
91 callback.Run(response);
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
H A Dindex.php75 // Return request headers in the response.
78 // Return response headers in the response?
89 // Execute the request. If an error occurs fill the response body with it.
90 $response = curl_exec($curl); variable
91 if (!$response) {
92 $response = curl_error($curl); variable
95 // Add server's response headers to our response body
96 $response variable
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/
H A DIRCProxyWebSocket.java27 protected void doGet(HttpServletRequest request, HttpServletResponse response) argument
29 getServletContext().getNamedDispatcher("default").forward(request,response);
/external/chromium_org/chrome/test/chromedriver/net/
H A Dnet_util.cc26 std::string* response)
27 : url_(url), getter_(getter), response_(response), event_(false, false) {}
91 std::string* response) {
92 return SyncUrlFetcher(GURL(url), getter, response).Fetch();
24 SyncUrlFetcher(const GURL& url, URLRequestContextGetter* getter, std::string* response) argument
89 FetchUrl(const std::string& url, URLRequestContextGetter* getter, std::string* response) argument
H A Dport_server_unittest.cc65 const std::string& response,
102 sock.Send(response.c_str(), response.length());
124 const std::string& response,
130 &RunServerOnThread, path, response, &listen_event, request));
64 RunServerOnThread(const std::string& path, const std::string& response, base::WaitableEvent* listen_event, std::string* request) argument
123 RunServer(const std::string& path, const std::string& response, std::string* request) argument
/external/chromium_org/chromeos/dbus/
H A Dbluetooth_profile_manager_client.cc201 // Called when a response for successful method call is received.
203 dbus::Response* response) {
204 DCHECK(response);
208 // Called when a response for a failed method call is received.
210 dbus::ErrorResponse* response) {
211 // Error response has optional error message argument.
214 if (response) {
215 dbus::MessageReader reader(response);
216 error_name = response->GetErrorName();
202 OnSuccess(const base::Closure& callback, dbus::Response* response) argument
209 OnError(const ErrorCallback& error_callback, dbus::ErrorResponse* response) argument
H A Dimage_burner_client.cc77 // Called when a response for BurnImage is received
78 void OnBurnImage(ErrorCallback error_callback, dbus::Response* response) { argument
79 if (!response) {
H A Dintrospectable_client.cc61 // Called by dbus:: when a response for Introspect() is recieved.
65 dbus::Response* response) {
66 // Parse response.
69 if (response != NULL) {
70 dbus::MessageReader reader(response);
72 LOG(WARNING) << "Introspect response has incorrect paramters: "
73 << response->ToString();
62 OnIntrospect(const std::string& service_name, const dbus::ObjectPath& object_path, const IntrospectCallback& callback, dbus::Response* response) argument
H A Dlorgnette_manager_client.cc75 dbus::Response* response) {
78 if (!response || !dbus::MessageReader(response).PopArray(&table_reader)) {
116 LOG(ERROR) << "Failed to decode response from ListScanners";
128 // Called when a CheckValidity response is received.
172 // Called when a response for ScanImage() is received.
174 dbus::Response* response) {
175 if (!response) {
74 OnListScanners(const ListScannersCallback& callback, dbus::Response* response) argument
173 OnScanImageComplete(const ScanImageCallback& callback, dbus::Response* response) argument
H A Dsystem_clock_client.cc94 void OnGetCanSet(dbus::Response* response) { argument
95 if (!response) {
100 dbus::MessageReader reader(response);
103 LOG(ERROR) << "CanSetTime response invalid: " << response->ToString();
107 // Nothing to do if the CanSetTime response hasn't changed.
131 // CanSetTime response is received.
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dcloud_print_request.cc94 std::string response; local
95 source->GetResponseAsString(&response);
99 VLOG(3) << response;
103 delegate_->OnFetchComplete(response); // After this object can be deleted.
/external/chromium_org/components/component_updater/
H A Dcrx_downloader.h67 base::FilePath response; member in struct:component_updater::CrxDownloader::Result
/external/chromium_org/components/copresence/rpc/
H A Dhttp_post.cc80 // Gather response info.
81 std::string response; local
82 source->GetResponseAsString(&response);
92 LOG_IF(WARNING, !response.empty()) << "HTTP response: " << response;
94 LOG(WARNING) << "Copresence request got HTTP response code "
95 << response_code << ". Response:\n" << response; local
98 // Return the response.
99 response_callback_.Run(response_code, response);
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Dbookmark_server_search_service.cc72 bool BookmarkServerSearchService::ProcessResponse(const std::string& response, argument
77 bool result = response_proto.ParseFromString(response);
/external/chromium_org/components/nacl/renderer/
H A Dfile_downloader.cc40 const blink::WebURLResponse& response) {
41 http_status_code_ = response.httpStatusCode();
46 total_bytes_to_be_received_ = response.expectedContentLength();
38 didReceiveResponse( blink::WebURLLoader* loader, const blink::WebURLResponse& response) argument
H A Dmanifest_downloader.cc37 const blink::WebURLResponse& response) {
38 if (response.httpStatusCode() != 200)
40 status_code_ = response.httpStatusCode();
35 didReceiveResponse( blink::WebURLLoader* loader, const blink::WebURLResponse& response) argument
/external/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_updater.cc48 scoped_ptr<em::PolicyFetchResponse> response) {
49 // Keep a serialized copy of |response|, to cache it later.
52 if (!response->SerializeToString(&serialized_response) ||
60 if (!store_->ValidatePolicy(response.Pass(), &ns, &data)) {
47 UpdateExternalPolicy( scoped_ptr<em::PolicyFetchResponse> response) argument
/external/chromium_org/content/browser/download/
H A Dsave_file_resource_handler.cc42 ResourceResponse* response,
48 bool SaveFileResourceHandler::OnResponseStarted(ResourceResponse* response, argument
40 OnRequestRedirected( const net::RedirectInfo& redirect_info, ResourceResponse* response, bool* defer) argument
/external/chromium_org/content/browser/geolocation/
H A Dwifi_data_provider_linux_unittest.cc117 // Creates a response for |mock_network_manager_proxy_|.
128 scoped_ptr<dbus::Response> response = dbus::Response::CreateEmpty(); local
129 dbus::MessageWriter writer(response.get());
131 return response.release();
138 // Creates a response for |mock_device_proxy_|.
149 scoped_ptr<dbus::Response> response = dbus::Response::CreateEmpty(); local
150 dbus::MessageWriter writer(response.get());
154 return response.release();
160 scoped_ptr<dbus::Response> response = dbus::Response::CreateEmpty(); local
161 dbus::MessageWriter writer(response
185 scoped_ptr<dbus::Response> response = dbus::Response::CreateEmpty(); local
[all...]
/external/chromium_org/content/browser/loader/
H A Dthrottling_resource_handler.cc36 ResourceResponse* response,
51 deferred_response_ = response;
58 return next_handler_->OnRequestRedirected(redirect_info, response, defer);
108 bool ThrottlingResourceHandler::OnResponseStarted(ResourceResponse* response, argument
121 deferred_response_ = response;
128 return next_handler_->OnResponseStarted(response, defer);
205 scoped_refptr<ResourceResponse> response; local
206 deferred_response_.swap(response);
209 if (!OnRequestRedirected(redirect_info, response.get(), &defer)) {
219 scoped_refptr<ResourceResponse> response; local
34 OnRequestRedirected( const net::RedirectInfo& redirect_info, ResourceResponse* response, bool* defer) argument
[all...]
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_ui_proxy_unittest.cc108 MediaStreamDevices response; local
110 .WillOnce(SaveArg<0>(&response));
113 EXPECT_TRUE(response.empty());
138 MediaStreamDevices response; local
140 .WillOnce(SaveArg<0>(&response));
143 EXPECT_FALSE(response.empty());
197 MediaStreamDevices response; local
199 .WillOnce(SaveArg<0>(&response));
202 EXPECT_FALSE(response.empty());
/external/chromium_org/content/child/
H A Dftp_directory_listing_response_delegate.cc60 const WebURLResponse& response)
63 if (response.extraData()) {
66 static_cast<WebURLResponseExtraDataImpl*>(response.extraData());
69 Init(response.url());
57 FtpDirectoryListingResponseDelegate( WebURLLoaderClient* client, WebURLLoader* loader, const WebURLResponse& response) argument
/external/chromium_org/content/renderer/manifest/
H A Dmanifest_manager.cc118 const blink::WebURLResponse& response,
120 if (response.isNull() && data.empty()) {
125 manifest_ = ManifestParser::Parse(data, response.url(), document_url);
116 OnManifestFetchComplete( const GURL& document_url, const blink::WebURLResponse& response, const std::string& data) argument

Completed in 583 milliseconds

1234567891011>>