Searched defs:response (Results 101 - 125 of 710) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCStatsRequestImpl.cpp69 void RTCStatsRequestImpl::requestSucceeded(RTCStatsResponseBase* response) argument
73 m_successCallback->handleEvent(static_cast<RTCStatsResponse*>(response));
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DFetchResponseData.cpp16 // "Unless stated otherwise, a response's url is null, status is 200, status
23 // "A network error is a response whose status is always 0, status message
31 // "A basic filtered response is a filtered response whose type is |basic|,
32 // header list excludes any headers in internal response's header list whose
34 FetchResponseData* response = new FetchResponseData(BasicType, m_status, m_statusMessage); local
35 response->m_url = m_url;
40 response->m_headerList->append(header->first, header->second);
42 response->m_blobDataHandle = m_blobDataHandle;
43 response
56 FetchResponseData* response = new FetchResponseData(CORSType, m_status, m_statusMessage); local
78 FetchResponseData* response = new FetchResponseData(OpaqueType, 0, ""); local
83 populateWebServiceWorkerResponse(WebServiceWorkerResponse& response) argument
[all...]
H A DResponseTest.cpp35 const KURL url(ParsedURLString, "http://www.response.com");
40 Response* response = Response::create(executionContext(), fetchResponseData); local
41 ASSERT(response);
42 EXPECT_EQ(url, response->url());
59 Response* response = Response::create(executionContext(), webResponse); local
60 ASSERT(response);
61 EXPECT_EQ(url, response->url());
62 EXPECT_EQ(status, response->status());
63 EXPECT_EQ(statusText, response->statusText());
65 Headers* responseHeaders = response
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/
H A DArchiveResource.h51 const ResourceResponse& response() const { return m_response; } function in class:blink::FINAL
/external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
H A DJsonpRequestBuilderTest.java110 * @param response
111 * Reply to any request with this response.
115 public static String execute(long timeoutMillis, String response) throws IOException { argument
116 HttpServer server = new HttpServer(timeoutMillis, response);
135 outputStream.write(response);
145 private HttpServer(long waitMillis, String response) throws IOException { argument
147 this.response = (header + response).getBytes();
152 private byte[] response; field in class:JsonpRequestBuilderTest.HttpServer
/external/glide/library/src/main/java/com/bumptech/glide/volley/
H A DVolleyStreamFetcher.java93 protected Response<byte[]> parseNetworkResponse(NetworkResponse response) { argument
94 return Response.success(response.data, HttpHeaderParser.parseCacheHeaders(response));
98 protected void deliverResponse(byte[] response) { argument
99 future.onResponse(new ByteArrayInputStream(response));
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
H A Dpolochallengeresponsetest.cc81 response = new PoloChallengeResponse(client_cert, server_cert);
91 delete response;
99 PoloChallengeResponse* response; member in class:polo::pairing::PoloChallengeResponseTest
103 const Alpha* alpha = response->GetAlpha(nonce);
112 const Gamma* gamma = response->GetGamma(nonce);
121 const Gamma* gamma = response->GetGamma(nonce);
126 const Nonce* extracted = response->ExtractNonce(*gamma);
147 ASSERT_TRUE(response->CheckGamma(gamma));
/external/kernel-headers/original/uapi/linux/mmc/
H A Dioctl.h15 __u32 response[4]; /* CMD response */ member in struct:mmc_ioc_cmd
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DGetAndPostIntegrationTest.java36 testServer.response = "testSimpleGetRequest";
47 testServer.response = "testGetRequestWithParameters";
58 testServer.response = "testPostWithNoParameters";
69 testServer.response = "testPostRequestWithFormEncodedParameters";
85 testServer.response = "testPostRequestWithMultipartEncodedParameters";
104 public String response; field in class:GetAndPostIntegrationTest.TestServer
112 StringBuilder sb = new StringBuilder(String.valueOf(method) + ':' + response);
/external/nanopb-c/examples/network_server/
H A Dclient.c41 ListFilesResponse response; local
71 response.file.funcs.decode = &printfile_callback;
73 if (!pb_decode(&input, ListFilesResponse_fields, &response))
79 if (response.path_error)
H A Dserver.c51 ListFilesResponse response; local
70 response.has_path_error = true;
71 response.path_error = true;
72 response.file.funcs.encode = NULL;
76 response.has_path_error = false;
77 response.file.funcs.encode = &listdir_callback;
78 response.file.arg = directory;
81 if (!pb_encode(&output, ListFilesResponse_fields, &response))
/external/nist-sip/java/javax/sip/header/
H A DAuthenticationInfoHeader.java21 void setResponse(String response) throws ParseException; argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DResponseCacheAdapter.java33 * enables OkHttp to continue supporting Java standard response cache implementations.
57 public CacheRequest put(Response response) throws IOException { argument
58 URI uri = response.request().uri();
59 HttpURLConnection connection = JavaApiConverter.createJavaUrlConnection(response);
79 // with the original cached response.
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
H A DOkApacheClient.java152 // Read the response headers.
155 BasicHttpResponse response = new BasicHttpResponse(HTTP_1_1, responseCode, message);
156 // Get the response body ready to stream.
167 response.addHeader(header);
174 response.setEntity(entity);
176 return response;
196 HttpResponse response = execute(host, request, context);
198 return handler.handleResponse(response);
200 consumeContentQuietly(response);
204 private static void consumeContentQuietly(HttpResponse response) { argument
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DRecordedResponse.java28 * A received response or failure recorded by the response recorder.
32 public final Response response; field in class:RecordedResponse
36 RecordedResponse(Request request, Response response, String body, Failure failure) { argument
38 this.response = response;
44 assertEquals(expectedCode, response.code());
50 Headers headers = response.headers();
66 Handshake handshake = response.handshake();
76 * Asserts that the current response wa
[all...]
/external/apache-http/src/org/apache/http/protocol/
H A DHttpService.java81 * @param responseFactory the response factory
136 HttpResponse response = null;
154 response = this.responseFactory.newHttpResponse(ver,
156 response.setParams(
157 new DefaultedHttpParams(response.getParams(), this.params));
161 this.expectationVerifier.verify(request, response, context);
163 response = this.responseFactory.newHttpResponse(HttpVersion.HTTP_1_0,
165 response.setParams(
166 new DefaultedHttpParams(response.getParams(), this.params));
167 handleException(ex, response);
222 handleException(final HttpException ex, final HttpResponse response) argument
238 doService( final HttpRequest request, final HttpResponse response, final HttpContext context) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/attestation/
H A Dattestation_ca_client.cc62 LOG(ERROR) << "Attestation CA sent an error response: "
68 std::string response; local
69 bool result = source->GetResponseAsString(&response);
73 callback.Run(true, response);
/external/chromium_org/chrome/browser/chromeos/dbus/
H A Dservice_provider_test_helper.cc127 // a response that the caller will ignore, this will send a signal, which
132 // Check for a response.
135 // Return response.
157 scoped_ptr<dbus::Response> response) {
158 response_ = response.Pass();
156 OnResponse( scoped_ptr<dbus::Response> response) argument
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dwildcard_login_checker.cc19 // Presence of this key in the userinfo response indicates whether the user is
65 const base::DictionaryValue* response) {
74 OnCheckCompleted(response->HasKey(kHostedDomainKey) ? RESULT_ALLOWED
64 OnGetUserInfoSuccess( const base::DictionaryValue* response) argument
/external/chromium_org/chrome/browser/devtools/device/adb/
H A Dadb_device_provider.cc31 const std::string& response) {
38 Tokenize(response, "\n", &serials);
28 ReceivedAdbDevices( const AdbDeviceProvider::SerialsCallback& callback, int result_code, const std::string& response) argument
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_network_protocol_handler.cc31 scoped_ptr<DevToolsProtocol::Response> response; local
34 response = EmulateNetworkConditions(agent_host, command.get());
36 response = CanEmulateNetworkConditions(agent_host, command.get());
39 if (response)
40 return response->Serialize();
/external/chromium_org/chrome/browser/extensions/
H A Dtest_blacklist_state_fetcher.cc64 ClientCRXListInfoResponse response; local
66 response.set_verdict(verdicts_[id]);
68 response.set_verdict(ClientCRXListInfoResponse::NOT_IN_BLACKLIST);
71 response.SerializeToString(&response_str);
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivet_local_printer_lister_unittest.cc25 0x80, 0x00, // Standard query response, no error
122 const std::string& response) {
130 fetcher->SetResponseString(response);
121 SuccessfulResponseToURL(const GURL& url, const std::string& response) argument
/external/chromium_org/chrome/browser/net/
H A Ddns_probe_runner.cc42 const DnsResponse* response) {
70 DnsResponse::Result result = response->ParseToAddressList(&addr_list, &ttl);
127 const DnsResponse* response) {
132 result_ = EvaluateResponse(net_error, response);
40 EvaluateResponse( int net_error, const DnsResponse* response) argument
124 OnTransactionComplete( DnsTransaction* transaction, int net_error, const DnsResponse* response) argument
/external/chromium_org/chrome/browser/net/spdyproxy/
H A Ddata_reduction_proxy_settings_unittest_android.cc85 const std::string& response,
101 response,
119 const std::string& response,
83 SetProbeResult( const std::string& test_url, const std::string& response, ProbeURLFetchResult result, bool success, int expected_calls) argument

Completed in 7789 milliseconds

1234567891011>>