HomeSort by relevance Sort by last modified time
    Searched refs:Response (Results 176 - 200 of 334) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/skia/tools/skiaserve/urlhandlers/
InfoHandler.cpp 13 #include "../Response.h"
15 using namespace Response;
PostHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
  /packages/services/Telephony/src/com/android/services/telephony/activation/
SimActivationActivity.java 49 final PendingIntent response = local
52 Log.i(this, "Running activation w/ response " + response);
56 new SimActivationManager.Response() {
59 if (response != null) {
61 response.send();
70 // Return the response as an activity result and the pending intent.
  /system/webservd/libwebserv/
response_impl.h 24 #include <libwebserv/response.h>
30 // Implementation of the Response interface.
31 class ResponseImpl final : public Response {
35 // Overrides from Response.
  /system/tpm/tpm_manager/client/
tpm_nvram_dbus_proxy_test.cc 62 auto response = dbus::Response::CreateEmpty();
63 dbus::MessageWriter writer(response.get());
67 response_callback.Run(response.release());
96 auto response = dbus::Response::CreateEmpty();
97 dbus::MessageWriter writer(response.get());
101 response_callback.Run(response.release());
131 auto response = dbus::Response::CreateEmpty()
    [all...]
  /system/tpm/attestation/client/
dbus_proxy_test.cc 62 auto response = dbus::Response::CreateEmpty();
63 dbus::MessageWriter writer(response.get());
69 response_callback.Run(response.release());
104 auto response = dbus::Response::CreateEmpty();
105 dbus::MessageWriter writer(response.get());
115 response_callback.Run(response.release());
149 auto response = dbus::Response::CreateEmpty()
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
FramedTransport.java 22 import com.squareup.okhttp.Response;
103 @Override public Response.Builder readResponseHeaders() throws IOException {
170 /** Returns headers for a name value block containing a SPDY response. */
171 public static Response.Builder readNameValueBlock(List<Header> headerBlock,
200 return new Response.Builder()
207 @Override public ResponseBody openResponseBody(Response response) throws IOException {
208 return new RealResponseBody(response.headers(), Okio.buffer(stream.getSource()));
  /external/libchrome/dbus/
message.cc 395 // Response implementation.
398 Response::Response() : Message() {
401 scoped_ptr<Response> Response::FromRawMessage(DBusMessage* raw_message) {
405 scoped_ptr<Response> response(new Response);
406 response->Init(raw_message);
407 return response;
    [all...]
object_proxy.cc 49 void EmptyResponseCallbackBody(Response* /*response*/) {
72 scoped_ptr<Response> ObjectProxy::CallMethodAndBlockWithErrorDetails(
79 return scoped_ptr<Response>();
100 return scoped_ptr<Response>();
106 return Response::FromRawMessage(response_message);
109 scoped_ptr<Response> ObjectProxy::CallMethodAndBlock(MethodCall* method_call,
165 // Wait for the response in the D-Bus thread.
323 // The response is not received.
338 scoped_ptr<Response> response(Response::FromRawMessage(response_message))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java 257 // Standard Response Creation methods
260 * Creates a new Response message of type specified by the statusCode
286 public Response createResponse(int statusCode, CallIdHeader callId,
293 throw new NullPointerException(" unable to create the response");
317 * Creates a new Response message of type specified by the statusCode
343 public Response createResponse(int statusCode, CallIdHeader callId,
369 * Creates a new Response message of type specified by the statusCode
371 * Response does not contain a body.
390 public Response createResponse(int statusCode, CallIdHeader callId,
397 + ", unable to create the response", 0)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
libhttplib2.tex 121 A 3xx redirect response code was provided but no Location: header
139 The headers claimed that the content of the response was compressed but the
178 \begin{classdesc}{Response}{info}
179 Response is a subclass of \class{dict} and instances of this
235 The return value is a tuple of (response, content), the first being and instance of the
236 \class{Response} class, the second being a string that contains the response entity body.
285 those error conditions will be turned into \class{Response} objects
292 Defaults to \code{False}. If \code{True}, then any etags present in the cached response
324 \subsection{Response Objects
    [all...]
  /external/chromium-trace/catapult/third_party/webtest/webtest/
http.py 70 resp = webob.Response()
82 return webob.Response('server started')(environ, start_response)
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
DebugHandler.java 31 import org.eclipse.jetty.server.Response;
39 * Details of the request and response are written to an output stream
54 public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
57 final Response base_response = baseRequest.getResponse();
81 getHandler().handle(target,baseRequest,request,response);
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpServerTest.java 64 public Response response = newFixedLengthResponse(""); field in class:HttpServerTest.TestServer
99 public Response serve(IHTTPSession session) {
113 return this.response;
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 22 import com.squareup.okhttp.Response;
92 Response response = client.newCall(request).execute(); local
93 String responseSource = response.networkResponse() != null
94 ? ("(network: " + response.networkResponse().code() + " over " + response.protocol() + ")")
96 int responseCode = response.code();
100 String contentType = response.header("Content-Type");
102 response.body().close();
106 Document document = Jsoup.parse(response.body().string(), url.toString())
    [all...]
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
CustomTrust.java 22 import com.squareup.okhttp.Response;
50 Response response = client.newCall(request).execute(); local
51 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
53 Headers responseHeaders = response.headers();
58 System.out.println(response.body().string());
  /system/core/include/utils/
Looper.h 431 struct Response {
469 Vector<Response> mResponses;
  /external/caliper/lib/
jsr311-api-1.1.1.jar 
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
transfer_test.py 16 def assertRangeAndContentRangeCompatible(self, request, response):
23 self.assertIn('content-range', response.info)
24 response_header = response.info['content-range']
91 make_request.return_value = http_wrapper.Response(
119 make_request.return_value = http_wrapper.Response(
153 return http_wrapper.Response(
163 return http_wrapper.Response(
  /external/chromium-trace/catapult/third_party/webapp2/tests/
request_test.py 117 rsp = webapp2.Response()
132 rsp = webapp2.Response()
154 rsp = webapp2.Response()
172 rsp = webapp2.Response()
  /external/libweave/src/privet/
privet_manager.h 24 class Response;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RecordingCallback.java 38 @Override public synchronized void onResponse(Response response) throws IOException {
40 ResponseBody body = response.body();
43 responses.add(new RecordedResponse(response.request(), response, null, buffer.readUtf8(), null));
48 * Returns the recorded response triggered by {@code request}. Throws if the
49 * response isn't enqueued before the timeout.
67 throw new AssertionError("Timed out waiting for response to " + url);
73 throw new AssertionError("Expected no response for " + url);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HeadersTest.java 21 import com.squareup.okhttp.Response;
45 Response response = local
47 Headers headers = response.headers();
49 assertEquals(Protocol.SPDY_3, response.protocol());
50 assertEquals(200, response.code());
51 assertEquals("OK", response.message());
73 Response response = local
75 Headers headers = response.headers()
87 Response response = FramedTransport.readNameValueBlock(headerBlock, Protocol.HTTP_2) local
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 9 ATTRIBUTE MS-CHAP-Response 1 string Microsoft
38 ATTRIBUTE MS-CHAP2-Response 25 string Microsoft
  /external/skia/tools/skiaserve/
skiaserve.cpp 12 #include "Response.h"
21 using namespace Response;

Completed in 193 milliseconds

1 2 3 4 5 6 78 91011>>