HomeSort by relevance Sort by last modified time
    Searched full:response (Results 1 - 25 of 3607) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/message/
ResponseExt.java 3 import javax.sip.message.Response;
6 *Extension for the jain-sip Response interface. This is a convenience
9 public interface ResponseExt extends Response, MessageExt {
  /external/nist-sip/java/javax/sip/
ServerTransaction.java 3 import javax.sip.message.Response;
6 void sendResponse(Response response)
ResponseEvent.java 4 import javax.sip.message.Response;
8 private Response mResponse;
12 Dialog dialog, Response response) {
15 mResponse = response;
23 public Response getResponse() {
  /external/webkit/LayoutTests/http/tests/appcache/
main-resource-redirect-expected.txt 1 Test that application cache is consulted again after a redirect response.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
nf_conntrack_ftp.h 10 /* PASV response from server */
14 /* EPSV response from server */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
nf_conntrack_ftp.h 10 /* PASV response from server */
14 /* EPSV response from server */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
nf_conntrack_ftp.h 10 /* PASV response from server */
14 /* EPSV response from server */
  /external/nist-sip/java/gov/nist/javax/sip/
ResponseEventExt.java 6 import javax.sip.message.Response;
16 Dialog dialog, Response response) {
17 super(source,clientTransaction,dialog,response);
22 * Return true if this is a forked response.
24 * @return true if the response event is for a forked response.
31 * Set the original transaction for a forked response.
33 * @param originalTransaction - the original transaction for which this response event is a fork.
40 * Get the original transaction for which this is a forked response
    [all...]
  /frameworks/volley/src/com/android/volley/toolbox/
JsonArrayRequest.java 21 import com.android.volley.Response;
22 import com.android.volley.Response.ErrorListener;
23 import com.android.volley.Response.Listener;
31 * A request for retrieving a {@link JSONArray} response body at a given URL.
38 * @param listener Listener to receive the JSON response
46 protected Response<JSONArray> parseNetworkResponse(NetworkResponse response) {
49 new String(response.data, HttpHeaderParser.parseCharset(response.headers));
50 return Response.success(new JSONArray(jsonString)
    [all...]
StringRequest.java 21 import com.android.volley.Response;
22 import com.android.volley.Response.ErrorListener;
23 import com.android.volley.Response.Listener;
28 * A canned request for retrieving the response body at a given URL as a String.
38 * @param listener Listener to receive the String response
51 * @param listener Listener to receive the String response
59 protected void deliverResponse(String response) {
60 mListener.onResponse(response);
64 protected Response<String> parseNetworkResponse(NetworkResponse response) {
    [all...]
  /external/chromium/chrome/browser/metrics/
metrics_response_unittest.cc 18 "<response xmlns=\"http://www.mozilla.org/metrics\"><config>"
19 "</config></response>";
22 "<response xmlns=\"http://www.mozilla.org/metrics\"><config>"
30 "</config></response>";
33 "<response xmlns=\"http://www.mozilla.org/metrics\"><config>"
40 "</config></response>";
81 MetricsResponse response(rcase.response_xml);
82 EXPECT_TRUE(response.valid());
83 EXPECT_EQ(rcase.collectors, response.collectors()) <<
85 EXPECT_EQ(rcase.events, response.events()) << "Mismatch in case " << i
    [all...]
  /frameworks/volley/src/com/android/volley/
Response.java 20 * Encapsulates a parsed response for delivery.
22 * @param <T> Parsed type of this response
24 public class Response<T> {
28 /** Called when a response is received. */
29 public void onResponse(T response);
41 /** Returns a successful response containing the parsed result. */
42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) {
43 return new Response<T>(result, cacheEntry);
47 * Returns a failed response containing the given error code and an optional
50 public static <T> Response<T> error(VolleyError error)
    [all...]
ExecutorDelivery.java 31 * Creates a new response delivery interface.
45 * Creates a new response delivery interface, mockable version
54 public void postResponse(Request<?> request, Response<?> response) {
55 postResponse(request, response, null);
59 public void postResponse(Request<?> request, Response<?> response, Runnable runnable) {
61 request.addMarker("post-response");
62 mResponsePoster.execute(new ResponseDeliveryRunnable(request, response, runnable));
68 Response<?> response = Response.error(error) local
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitnetworkresponse.cpp 33 * @short_description: the response given to a network request
37 * response.
60 WebKitNetworkResponse* response = WEBKIT_NETWORK_RESPONSE(object); local
61 WebKitNetworkResponsePrivate* priv = response->priv;
73 WebKitNetworkResponse* response = WEBKIT_NETWORK_RESPONSE(object); local
74 WebKitNetworkResponsePrivate* priv = response->priv;
83 WebKitNetworkResponse* response = WEBKIT_NETWORK_RESPONSE(object); local
87 g_value_set_string(value, webkit_network_response_get_uri(response));
90 g_value_set_object(value, webkit_network_response_get_message(response));
99 WebKitNetworkResponse* response = WEBKIT_NETWORK_RESPONSE(object) local
    [all...]
  /external/smack/src/com/kenai/jbosh/
HTTPResponse.java 20 * This class represents a complete HTTP response to a request made via
22 * intended to represent a deferred, future response, not necessarily a
23 * response which is immediately available.
35 * Get the HTTP status code of the response (e.g., 200, 404, etc.). If
36 * the response has not yet been received from the remote server, this
37 * method should block until the response has arrived.
40 * @throws InterruptedException if interrupted while awaiting response
45 * Get the HTTP response message body. If the response has not yet been
47 * response has arrived
    [all...]
  /external/libsepol/include/sepol/
roles.h 5 const char *role, int *response);
  /frameworks/base/core/java/android/webkit/
WebResourceResponse.java 24 * Encapsulates a resource response. Applications can return an instance of this
26 * response when the WebView requests a particular resource.
35 * Constructs a resource response with the given MIME type, encoding, and
40 * @param mimeType the resource response's MIME type, for example text/html
41 * @param encoding the resource response's encoding
42 * @param data the input stream that provides the resource response's data
52 * Sets the resource response's MIME type, for example text/html.
54 * @param mimeType the resource response's MIME type
61 * Gets the resource response's MIME type.
63 * @return the resource response's MIME typ
    [all...]
  /external/chromium/net/ftp/
ftp_ctrl_response_buffer_unittest.cc 29 net::FtpCtrlResponse response = buffer_.PopResponse(); local
31 EXPECT_EQ(200, response.status_code);
32 ASSERT_EQ(1U, response.lines.size());
33 EXPECT_EQ("Status Text", response.lines[0]);
48 net::FtpCtrlResponse response = buffer_.PopResponse(); local
50 EXPECT_EQ(200, response.status_code);
51 ASSERT_EQ(1U, response.lines.size());
52 EXPECT_EQ("Status Text", response.lines[0]);
65 net::FtpCtrlResponse response = buffer_.PopResponse(); local
67 EXPECT_EQ(230, response.status_code)
90 net::FtpCtrlResponse response = buffer_.PopResponse(); local
110 net::FtpCtrlResponse response = buffer_.PopResponse(); local
130 net::FtpCtrlResponse response = buffer_.PopResponse(); local
152 net::FtpCtrlResponse response = buffer_.PopResponse(); local
    [all...]
  /external/webkit/Source/WebKit/gtk/tests/
testnetworkresponse.c 33 WebKitNetworkResponse* response; local
37 response = WEBKIT_NETWORK_RESPONSE(g_object_new(WEBKIT_TYPE_NETWORK_RESPONSE, "uri", "http://debian.org/", NULL));
38 g_assert(WEBKIT_IS_NETWORK_RESPONSE(response));
39 message = webkit_network_response_get_message(response);
41 g_object_unref(response);
45 response = WEBKIT_NETWORK_RESPONSE(g_object_new(WEBKIT_TYPE_NETWORK_RESPONSE, "message", message, NULL));
46 g_assert(WEBKIT_IS_NETWORK_RESPONSE(response));
48 g_object_unref(response);
54 response = WEBKIT_NETWORK_RESPONSE(g_object_new(WEBKIT_TYPE_NETWORK_RESPONSE, "message", message, "uri", "http://gnome.org/", NULL));
55 g_assert(WEBKIT_IS_NETWORK_RESPONSE(response));
65 WebKitNetworkResponse* response; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCommandInterface.java 175 public void setMute (boolean enableMute, Message response) {
179 public void getMute (Message response) {
224 public void deleteSmsOnSim(int index, Message response) {
228 public void deleteSmsOnRuim(int index, Message response) {
232 public void writeSmsToSim(int status, String smsc, String pdu, Message response) {
236 public void writeSmsToRuim(int status, String pdu, Message response) {
290 public void queryCallWaiting(int serviceClass, Message response) {
295 Message response) {
299 public void setNetworkSelectionModeAutomatic(Message response) {
304 String operatorNumeric, Message response) {
    [all...]
  /frameworks/volley/tests/src/com/android/volley/mock/
MockResponseDelivery.java 20 import com.android.volley.Response;
33 public Response<?> responsePosted = null;
35 public void postResponse(Request<?> request, Response<?> response) {
37 responsePosted = response;
41 public void postResponse(Request<?> request, Response<?> response, Runnable runnable) {
43 responsePosted = response;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DefaultRequestDirectorTest.java 60 Robolectric.addPendingHttpResponse(200, "a happy response body");
65 Robolectric.addPendingHttpResponse(new TestHttpResponse(200, "a happy response body"));
66 HttpResponse response = requestDirector.execute(null, new HttpGet("http://example.com"), null); local
68 assertNotNull(response);
69 assertThat(response.getStatusLine().getStatusCode(), equalTo(200));
70 assertThat(Strings.fromStream(response.getEntity().getContent()), equalTo("a happy response body"));
75 Robolectric.addPendingHttpResponse(new TestHttpResponse(200, "a happy response body"));
78 new TestHttpResponse(200, "a cheery response body"));
80 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null) local
92 HttpResponse response = requestDirector.execute(null, new HttpGet("http:\/\/some.uri"), null); local
105 HttpResponse response = requestDirector.execute(null, new HttpGet("http:\/\/some.uri"), null); local
154 HttpResponse response = requestDirector.execute(null, new HttpGet("http:\/\/some.uri"), null); local
167 HttpResponse response = requestDirector.execute(null, new HttpGet("http:\/\/some.uri"), null); local
180 HttpResponse response = requestDirector.execute(null, new HttpGet("http:\/\/some.uri"), null); local
197 HttpResponse response = requestDirector.execute(null, new HttpGet("http:\/\/matching.uri"), null); local
211 HttpResponse response = requestDirector.execute(null, new HttpGet("http:\/\/example.com"), null); local
275 HttpResponse response = client.execute(new HttpGet("http:\/\/www.nowhere.org")); local
358 HttpResponse response = requestDirector.execute(null, new HttpGet("http:\/\/example.com"), null); local
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java 46 private int mExpectingSendEnvelopeResponseSw1; // SW1/SW2 response status
47 private int mExpectingSendEnvelopeResponseSw2; // SW1/SW2 response status
48 private String mExpectingSendEnvelopeResponse; // Response string for Send Envelope
83 * @param response simulated envelope response to return
85 synchronized void expectSendEnvelope(String contents, int sw1, int sw2, String response) {
91 mExpectingSendEnvelopeResponse = response;
108 Message response) {
114 if (response != null) {
115 AsyncResult.forMessage(response);
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
URLConnectionBenchmark.java 45 MockResponse response = new MockResponse(); local
46 responseHeaders.apply(response);
47 transferEncoding.setBody(response, bodySize, chunkSize);
48 server.enqueue(response);
50 // keep serving the same response for all iterations
94 void setBody(MockResponse response, int bodySize, int chunkSize) throws IOException {
96 response.setBody(new byte[bodySize]);
98 response.setChunkedBody(new byte[bodySize], chunkSize);
107 void apply(MockResponse response) {
110 response.addHeader("Date: Wed, 30 Jun 2010 17:57:39 GMT")
    [all...]
  /external/v8/test/mjsunit/
debug-backtrace.js 62 ParsedResponse.prototype.response = function() {
91 var response;
104 response = new ParsedResponse(resp);
105 backtrace = response.body();
115 assertEquals("f", response.lookup(frames[0].func.ref).name);
117 assertEquals("", response.lookup(frames[1].func.ref).name);
118 assertEquals("m", response.lookup(frames[1].func.ref).inferredName);
120 assertEquals("g", response.lookup(frames[2].func.ref).name);
122 assertEquals("", response.lookup(frames[3].func.ref).name);
123 assertFalse(response.running(), "expected not running")
    [all...]

Completed in 1133 milliseconds

1 2 3 4 5 6 7 8 91011>>