Searched defs:response (Results 226 - 250 of 714) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/loader/
H A Ddetachable_resource_handler.cc97 ResourceResponse* response,
104 bool ret = next_handler_->OnRequestRedirected(request_id, url, response,
111 ResourceResponse* response,
119 next_handler_->OnResponseStarted(request_id, response, &is_deferred_);
95 OnRequestRedirected(int request_id, const GURL& url, ResourceResponse* response, bool* defer) argument
110 OnResponseStarted(int request_id, ResourceResponse* response, bool* defer) argument
H A Dlayered_resource_handler.cc40 ResourceResponse* response,
43 return next_handler_->OnRequestRedirected(request_id, url, response, defer);
47 ResourceResponse* response,
50 return next_handler_->OnResponseStarted(request_id, response, defer);
38 OnRequestRedirected(int request_id, const GURL& url, ResourceResponse* response, bool* defer) argument
46 OnResponseStarted(int request_id, ResourceResponse* response, bool* defer) argument
H A Dsync_resource_handler.cc52 ResourceResponse* response,
56 new_url, request(), GetRequestInfo()->GetContext(), response);
59 DevToolsNetLogObserver::PopulateResponseInfo(request(), response); local
73 ResourceResponse* response,
81 request(), info->GetContext(), response, info->filter()); local
84 DevToolsNetLogObserver::PopulateResponseInfo(request(), response); local
87 result_.headers = response->head.headers;
88 result_.mime_type = response->head.mime_type;
89 result_.charset = response->head.charset;
90 result_.download_file_path = response
49 OnRequestRedirected( int request_id, const GURL& new_url, ResourceResponse* response, bool* defer) argument
71 OnResponseStarted( int request_id, ResourceResponse* response, bool* defer) argument
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Dwebsocket_dispatcher_host.cc139 int routing_id, const WebSocketHandshakeResponse& response) {
141 routing_id, response));
138 SendFinishOpeningHandshake( int routing_id, const WebSocketHandshakeResponse& response) argument
/external/chromium_org/content/browser/speech/
H A Dgoogle_streaming_remote_engine.h111 scoped_ptr<std::vector<uint8> > response; member in struct:content::GoogleStreamingRemoteEngine::FSMEventArgs
/external/chromium_org/content/renderer/fetchers/
H A Dresource_fetcher_impl.cc68 void ResourceFetcherImpl::RunCallback(const WebURLResponse& response, argument
78 callback.Run(response, data);
101 WebURLLoader* loader, const WebURLResponse& response) {
103 response_ = response;
100 didReceiveResponse( WebURLLoader* loader, const WebURLResponse& response) argument
/external/chromium_org/content/renderer/media/android/
H A Dmedia_info_loader.cc106 const WebURLResponse& response) {
108 << (response.httpVersion() == WebURLResponse::HTTP_0_9 ? "0.9" :
109 response.httpVersion() == WebURLResponse::HTTP_1_0 ? "1.0" :
110 response.httpVersion() == WebURLResponse::HTTP_1_1 ? "1.1" :
112 << " " << response.httpStatusCode();
118 if (response.httpStatusCode() == kHttpOK) {
104 didReceiveResponse( WebURLLoader* loader, const WebURLResponse& response) argument
H A Dproxy_media_keys.cc61 const uint8* response,
66 std::vector<uint8>(response, response + response_length));
60 UpdateSession(uint32 session_id, const uint8* response, int response_length) argument
/external/chromium_org/content/renderer/media/
H A Dwebcontentdecryptionmodulesession_impl.cc49 void WebContentDecryptionModuleSessionImpl::update(const uint8* response, argument
51 DCHECK(response);
52 media_keys_->UpdateSession(session_id_, response, response_length);
82 // convert the response to the old v0.1b API.
/external/chromium_org/content/renderer/
H A Dresource_fetcher_browsertest.cc50 virtual void OnURLFetchComplete(const WebURLResponse& response, argument
52 response_ = response;
64 const WebURLResponse& response() const { return response_; } function in class:content::FetcherDelegate
110 virtual void OnURLFetchComplete(const WebURLResponse& response,
112 FetcherDelegate::OnURLFetchComplete(response, data);
117 // invalidates |response| and |data|.
151 EXPECT_EQ(delegate->response().httpStatusCode(), 200);
166 EXPECT_EQ(delegate->response().httpStatusCode(), 404);
184 EXPECT_TRUE(delegate->response().isNull());
203 EXPECT_TRUE(delegate->response()
[all...]
/external/chromium_org/content/test/
H A Dweburl_loader_mock_factory.cc32 const WebURLResponse& response,
35 response_info.response = response;
56 const WebURLResponse& response,
59 RegisterURL(url, response, WebString());
87 WebURLResponse response; local
91 LoadRequest(request, &response, &error, &data);
93 while (response.httpStatusCode() >= 300 &&
94 response.httpStatusCode() < 400) {
95 WebURLRequest newRequest = loader->ServeRedirect(response);
31 RegisterURL(const WebURL& url, const WebURLResponse& response, const WebString& file_path) argument
55 RegisterErrorURL(const WebURL& url, const WebURLResponse& response, const WebURLError& error) argument
131 LoadSynchronously(const WebURLRequest& request, WebURLResponse* response, WebURLError* error, WebData* data) argument
145 LoadRequest(const WebURLRequest& request, WebURLResponse* response, WebURLError* error, WebData* data) argument
[all...]
/external/chromium_org/dbus/
H A Dobject_manager_unittest.cc110 void MethodCallback(Response* response) { argument
H A Dproperty.cc111 Response* response) {
112 if (!response) {
117 MessageReader reader(response);
122 callback.Run(response);
137 void PropertySet::OnGetAll(Response* response) { argument
138 if (!response) {
143 MessageReader reader(response);
145 LOG(WARNING) << "GetAll response has wrong parameters: "
146 << "expected dictionary: " << response->ToString();
167 Response* response) {
110 OnGet(PropertyBase* property, GetCallback callback, Response* response) argument
166 OnSet(PropertyBase* property, SetCallback callback, Response* response) argument
[all...]
/external/chromium_org/mojo/public/tests/
H A Dbindings_handle_passing_unittest.cc46 sample::Response::Builder response; variable
47 response.set_x(2);
48 response.set_pipe(pipe0.Pass());
49 client_->DidStuff(response.Finish(), text1);
98 virtual void DidStuff(const sample::Response& response,
102 if (response.pipe().is_valid()) {
104 EXPECT_TRUE(ReadTextMessage(response.pipe().get(), &text2));
106 // Ensure that simply accessing response.pipe() does not close it.
107 EXPECT_TRUE(response.pipe().is_valid());
112 ScopedMessagePipeHandle p = response
[all...]
/external/chromium_org/net/http/
H A Dhttp_basic_stream.cc30 HttpResponseInfo* response,
34 state_.GenerateRequestLine(), headers, response, callback);
29 SendRequest(const HttpRequestHeaders& headers, HttpResponseInfo* response, const CompletionCallback& callback) argument
H A Dproxy_connect_redirect_http_stream.cc34 HttpResponseInfo* response,
32 SendRequest( const HttpRequestHeaders& request_headers, HttpResponseInfo* response, const CompletionCallback& callback) argument
/external/chromium_org/net/spdy/
H A Dspdy_http_utils.cc25 HttpResponseInfo* response) {
78 response->headers = new HttpResponseHeaders(raw_headers);
79 response->was_fetched_via_spdy = true;
23 SpdyHeadersToHttpResponse(const SpdyHeaderBlock& headers, SpdyMajorVersion protocol_version, HttpResponseInfo* response) argument
/external/chromium_org/net/tools/dns_fuzz_stub/
H A Ddns_fuzz_stub.cc107 if (!dict->GetList("response", &resp_list)) {
108 LOG(ERROR) << filename << ": response is missing or not a list.";
118 LOG(ERROR) << filename << ": response[" << i << "] is not an integer.";
122 LOG(ERROR) << filename << ": response[" << i << "] is out of range.";
140 net::DnsResponse response; local
141 std::copy(resp_buf.begin(), resp_buf.end(), response.io_buffer()->data());
143 if (!response.InitParse(resp_buf.size(), query)) {
150 net::DnsResponse::Result result = response.ParseToAddressList(
157 // Print the response in one compact line.
/external/chromium_org/ppapi/tests/
H A Dtest_host_resolver.cc85 const std::string& response) {
89 std::vector<char> response_buffer(response.size());
91 SyncRead(socket, &response_buffer[0], response.size(), &rv));
93 if (response != actual_response) {
94 return "CheckHTTPResponse failed, expected: " + response +
83 CheckHTTPResponse(pp::TCPSocket* socket, const std::string& request, const std::string& response) argument
H A Dtest_host_resolver_private.cc100 const std::string& response) {
104 std::vector<char> response_buffer(response.size());
106 SyncRead(socket, &response_buffer[0], response.size(), &rv));
108 if (response != actual_response) {
109 return "CheckHTTPResponse failed, expected: " + response +
97 CheckHTTPResponse( pp::TCPSocketPrivate* socket, const std::string& request, const std::string& response) argument
/external/chromium_org/remoting/host/it2me/
H A Dit2me_native_messaging_host.cc89 scoped_ptr<base::DictionaryValue> response(new base::DictionaryValue());
91 // If the client supplies an ID, it will expect it in the response. This
95 response->Set("id", id->DeepCopy());
99 SendErrorAndExit(response.Pass(), "'type' not found in request.");
103 response->SetString("type", type + "Response");
106 ProcessHello(*message, response.Pass());
108 ProcessConnect(*message, response.Pass());
110 ProcessDisconnect(*message, response.Pass());
112 SendErrorAndExit(response.Pass(), "Unsupported request type: " + type);
118 scoped_ptr<base::DictionaryValue> response) {
116 ProcessHello( const base::DictionaryValue& message, scoped_ptr<base::DictionaryValue> response) argument
130 ProcessConnect( const base::DictionaryValue& message, scoped_ptr<base::DictionaryValue> response) argument
204 ProcessDisconnect( const base::DictionaryValue& message, scoped_ptr<base::DictionaryValue> response) argument
216 SendErrorAndExit( scoped_ptr<base::DictionaryValue> response, const std::string& description) argument
[all...]
/external/chromium_org/remoting/host/
H A Dregister_support_host_request.cc107 bool RegisterSupportHostRequest::ParseResponse(const XmlElement* response, argument
110 std::string type = response->Attr(buzz::QN_TYPE);
112 LOG(ERROR) << "Received error in response to heartbeat: "
113 << response->Str();
123 const XmlElement* result_element = response->FirstNamed(QName(
127 << "> is missing in the host registration response: "
128 << response->Str();
136 << "> is missing in the host registration response: "
137 << response->Str();
146 << "> is missing in the host registration response
165 ProcessResponse(IqRequest* request, const XmlElement* response) argument
[all...]
H A Dtoken_validator_factory_impl.cc115 // Verify that we got a successful response.
123 int response = request_->GetResponseCode(); local
126 if (response != 200) {
128 << "Error " << response << " validating token: '" << data << "'";
132 // Decode the JSON data from the response.
137 LOG(ERROR) << "Invalid token validation response: '" << data << "'";
H A Dtoken_validator_factory_impl_unittest.cc73 std::string response; local
74 base::JSONWriter::Write(&response_dict, &response);
75 return response;
81 std::string response; local
82 base::JSONWriter::Write(&response_dict, &response);
83 return response;
/external/chromium_org/remoting/jingle_glue/
H A Dchromium_port_allocator.cc113 std::string response; local
114 source->GetResponseAsString(&response);
126 ReceiveSessionResponse(response);

Completed in 317 milliseconds

1234567891011>>