Searched defs:response (Results 151 - 175 of 710) sorted by relevance

1234567891011>>

/external/chromium_org/content/renderer/pepper/
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 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/dbus/
H A Dmock_unittest.cc73 // Called when the response is received.
74 void OnResponse(Response* response) { argument
75 // |response| will be deleted on exit of the function. Copy the
77 if (response) {
78 MessageReader reader(response);
92 // Returns a response for the given method call. Used to implement
101 scoped_ptr<Response> response = Response::CreateEmpty(); local
102 MessageWriter writer(response.get());
104 return response.release();
118 // Creates a response an
124 Response* response = CreateMockProxyResponse(method_call, timeout_ms); local
133 RunResponseCallback( ObjectProxy::ResponseCallback response_callback, Response* response) argument
[all...]
/external/chromium_org/net/ftp/
H A Dftp_ctrl_response_buffer.cc82 base::Value* NetLogFtpCtrlResponseCallback(const FtpCtrlResponse* response, argument
85 lines->AppendStrings(response->lines);
88 dict->SetInteger("status_code", response->status_code);
/external/chromium_org/net/http/
H A Dhttp_auth_unittest.cc42 HttpResponseHeaders* HeadersFromResponseText(const std::string& response) { argument
44 HttpUtil::AssembleRawHeaders(response.c_str(), response.length()));
216 // no auth challenges for the same scheme, the response will be treated as
/external/chromium_org/net/quic/
H A Dquic_spdy_server_stream.cc112 // Find response in cache. If not found, send error response.
113 const QuicInMemoryCache::Response* response = local
115 if (response == NULL) {
120 if (response->response_type() == QuicInMemoryCache::CLOSE_CONNECTION) {
121 DVLOG(1) << "Special response: closing connection.";
126 if (response->response_type() == QuicInMemoryCache::IGNORE_REQUEST) {
127 DVLOG(1) << "Special response: ignoring request.";
131 DVLOG(1) << "Sending response for stream " << id();
132 SendHeadersAndBody(response
[all...]
/external/chromium_org/net/tools/quic/
H A Dquic_in_memory_cache_test.cc63 // Check if response already exists and matches.
80 std::string response_body("hello response");
86 const QuicInMemoryCache::Response* response = local
88 ASSERT_TRUE(response);
89 EXPECT_EQ("200", response->headers().response_code());
90 EXPECT_EQ(response_body.size(), response->body().length());
93 response = cache->GetResponse(request_headers);
94 ASSERT_TRUE(response);
95 EXPECT_EQ("200", response->headers().response_code());
96 EXPECT_EQ(response_body.size(), response
103 const QuicInMemoryCache::Response* response = local
117 const QuicInMemoryCache::Response* response = local
131 const QuicInMemoryCache::Response* response = local
[all...]
H A Dquic_spdy_server_stream.cc92 // Find response in cache. If not found, send error response.
93 const QuicInMemoryCache::Response* response = local
95 if (response == NULL) {
100 if (response->response_type() == QuicInMemoryCache::CLOSE_CONNECTION) {
101 DVLOG(1) << "Special response: closing connection.";
106 if (response->response_type() == QuicInMemoryCache::IGNORE_REQUEST) {
107 DVLOG(1) << "Special response: ignoring request.";
111 DVLOG(1) << "Sending response for stream " << id();
112 SendHeadersAndBody(response
[all...]
/external/chromium_org/remoting/protocol/
H A Djingle_session_manager.cc118 IncomingSessionResponse response = SessionManager::DECLINE; local
119 listener_->OnIncomingSession(session, &response);
121 if (response == SessionManager::ACCEPT) {
125 switch (response) {
/external/chromium_org/sync/engine/
H A Dnon_blocking_type_commit_contribution.cc42 const sync_pb::ClientToServerResponse& response,
44 const sync_pb::CommitResponse& commit_response = response.commit();
41 ProcessCommitResponse( const sync_pb::ClientToServerResponse& response, sessions::StatusController* status) argument
/external/chromium_org/sync/internal_api/
H A Dsyncapi_server_connection_manager.cc30 HttpResponse* response) {
55 response->server_status = HttpResponse::ServerConnectionCodeFromNetError(
60 // We got a server response, copy over response codes and content.
61 response->response_code = response_code;
62 response->content_length =
64 response->payload_length =
66 if (response->response_code < 400)
67 response->server_status = HttpResponse::SERVER_CONNECTION_OK;
68 else if (response
27 Init(const char* path, const std::string& auth_token, const std::string& payload, HttpResponse* response) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_token_matcher.py58 def response(length): function in function:Optimizer.inspect
60 self.write_selection(self.length_variable, lengths, str, response)
108 def response(alternative): function in function:Optimizer.inspect_array
113 self.write_selection(expression, alternatives, literal, response)
119 def write_selection(self, expression, alternatives, literal, response):
122 response(alternatives[0])
126 response(alternatives[0])
128 response(alternatives[1])
134 response(alternative)
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameConsole.cpp124 void FrameConsole::reportResourceResponseReceived(DocumentLoader* loader, unsigned long requestIdentifier, const ResourceResponse& response) argument
128 if (response.httpStatusCode() < 400)
130 String message = "Failed to load resource: the server responded with a status of " + String::number(response.httpStatusCode()) + " (" + response.httpStatusText() + ')';
131 RefPtrWillBeRawPtr<ConsoleMessage> consoleMessage = ConsoleMessage::create(NetworkMessageSource, ErrorMessageLevel, message, response.url().string());
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DThreadableLoaderClientWrapper.h66 void didReceiveResponse(unsigned long identifier, const ResourceResponse& response) argument
69 m_client->didReceiveResponse(identifier, response);
115 void didReceiveAuthenticationCancellation(unsigned long identifier, const ResourceResponse& response) argument
118 m_client->didReceiveResponse(identifier, response);
H A DWorkerLoaderClientBridgeSyncHelper.cpp72 OwnPtr<ResourceResponse> response(ResourceResponse::adopt(responseData));
73 client->didReceiveResponse(identifier, *response);
76 void WorkerLoaderClientBridgeSyncHelper::didReceiveResponse(unsigned long identifier, const ResourceResponse& response) argument
79 m_clientTasks.append(bind(&didReceiveResponseAdapter, &m_client, identifier, response.copyData()));
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DResponse.cpp23 FetchResponseData* response = 0; local
25 response = FetchResponseData::create();
27 response = FetchResponseData::createNetworkErrorResponse();
29 response->setURL(webResponse.url());
30 response->setStatus(webResponse.status());
31 response->setStatusMessage(webResponse.statusText());
32 return response;
95 // "3. Let |r| be a new Response object, associated with a new response,
100 // "4. Set |r|'s response's status to |init|'s status member."
103 // "5. Set |r|'s response'
143 create(ExecutionContext* context, FetchResponseData* response) argument
218 populateWebServiceWorkerResponse(WebServiceWorkerResponse& response) argument
238 Response(ExecutionContext* context, FetchResponseData* response) argument
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebServiceWorkerCache.h52 WebServiceWorkerResponse response; member in struct:blink::WebServiceWorkerCache::BatchOperation
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunrequest.h42 // response or determine that the request has timed out.
59 // Determines whether the given message is a response to one of the
112 // Called when the message receives a response or times out.
113 virtual void OnResponse(StunMessage* response) {} argument
114 virtual void OnErrorResponse(StunMessage* response) {} argument
H A Dstunserver.cc55 // 420 "Unknown Attribute" response.
70 StunMessage response; local
71 response.SetType(STUN_BINDING_RESPONSE);
72 response.SetTransactionID(msg->transaction_id());
82 response.AddAttribute(mapped_addr);
84 SendResponse(response, remote_addr);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmpplogintask.cc248 XmlElement * response = sasl_mech_->HandleSaslChallenge(element); local
249 if (response == NULL) {
252 pctx_->InternalSendStanza(response);
253 delete response;
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc64 GeneratorResponseContext(CodeGeneratorResponse* response, argument
66 : response_(response),
133 CodeGeneratorResponse response; local
134 GeneratorResponseContext context(&response, parsed_files);
148 response.set_error(file->name() + ": " + error);
153 if (!response.SerializeToFileDescriptor(STDOUT_FILENO)) {
/external/chromium_org/tools/android/common/
H A Dadb_connection.cc93 char response[kBufferMaxLength]; local
94 int response_length = HANDLE_EINTR(recv(host_socket, response,
97 strncmp("OKAY", response, kAdbStatusLength) != 0) {
98 LOG(ERROR) << "Bad response from ADB: length: " << response_length
99 << " data: " << DumpBinary(response, response_length);
/external/chromium_org/v8/src/
H A Dd8-debug.cc112 Handle<String> response = Handle<String>::Cast(response_val); local
114 // Convert the debugger response into text details and the running state.
116 Shell::DebugMessageDetails(isolate, response);
/external/fio/
H A Dgerror.c11 static void on_info_bar_response(GtkWidget *widget, gint response, argument
16 if (response == GTK_RESPONSE_OK) {
31 g_signal_connect(ui->error_info_bar, "response", G_CALLBACK(on_info_bar_response), ui);
/external/glide/library/src/main/java/com/bumptech/glide/volley/
H A DVolleyRequestFuture.java34 * Used by providing as your response and error listeners. For example:
46 * JSONObject response = future.get();
47 * // do something with response
55 * @param <T> The type of parsed response this future expects.
153 public synchronized void onResponse(T response) { argument
155 mResult = response;

Completed in 522 milliseconds

1234567891011>>