/external/nist-sip/java/gov/nist/javax/sip/ |
SipProviderImpl.java | 78 import javax.sip.message.Response; 506 "Error sending provisional response"); 554 "Could not send back provisional response!"); 738 * @see javax.sip.SipProvider#sendResponse(javax.sip.message.Response) 740 public void sendResponse(Response response) throws SipException { 743 SIPResponse sipResponse = (SIPResponse) response; 746 throw new SipException("No via header in response!"); 747 SIPServerTransaction st = (SIPServerTransaction) sipStack.findTransaction((SIPMessage)response, true); 749 throw new SipException("Transaction exists -- cannot send response statelessly") 841 Response response = st.getLastResponse(); local 867 SIPResponse response = sipClientTx.getLastResponse(); local [all...] |
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
MockWebServer.java | 24 import com.squareup.okhttp.Response; 297 * Scripts {@code response} to be returned to a request made in sequence. The 298 * first request is served by the first enqueued response; the second request 299 * by the second enqueued response; and so on. 304 public void enqueue(MockResponse response) { 305 ((QueueDispatcher) dispatcher).enqueueResponse(response.clone()); 496 * Respond to CONNECT requests until a SWITCH_TO_SSL_AT_END response is 512 * Reads a request and writes its response. Returns true if further calls should be attempted 523 MockResponse response = dispatcher.dispatch(request); 524 if (response.getSocketPolicy() == SocketPolicy.DISCONNECT_AFTER_REQUEST) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPDialog.java | 105 import javax.sip.message.Response; 120 * INVITE transactions, a Dialog is created when a success message is received (i.e. a response 150 // Last response (JvB: either sent or received). 398 // resend last response. 405 * Issue 106. Section 13.3.1.4 RFC 3261 The 2xx response is passed to the transport 407 * until it reaches T2 seconds If the server retransmits the 2xx response for 64*T1 424 SIPResponse response = transaction.getLastResponse(); local 425 if (response.getStatusCode() == 200) { 428 // resend the last response. 430 transaction.sendMessage(response); 1461 SIPResponse response = st.getLastResponse(); local 2899 SIPResponse response = request.createResponse(statusCode); local [all...] |
SIPTransactionStack.java | 79 import javax.sip.message.Response; 358 // Max time for a forked response to arrive. After this time, the original dialog 428 // Close response socket after infinte time. 655 * Create a Dialog given a client tx and response. 678 * Create a Dialog given a sip provider and response. 781 * matching response, as described above). [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/ |
Dispatcher.java | 101 public void forward(ServletRequest request, ServletResponse response) throws ServletException, IOException 103 forward(request, response, DispatcherType.FORWARD); 110 public void error(ServletRequest request, ServletResponse response) throws ServletException, IOException 112 forward(request, response, DispatcherType.ERROR); 119 public void include(ServletRequest request, ServletResponse response) throws ServletException, IOException 126 if (!(response instanceof HttpServletResponse)) 127 response = new ServletResponseHttpWrapper(response); 140 _contextHandler.handle(_named,baseRequest, (HttpServletRequest)request, (HttpServletResponse)response); 183 _contextHandler.handle(_path,baseRequest, (HttpServletRequest)request, (HttpServletResponse)response); [all...] |
Server.java | 361 final Response response=connection.getResponse(); local 366 handle(target, request, request, response); 367 LOG.debug("RESPONSE "+target+" "+connection.getResponse().getStatus()+" handled="+request.isHandled()); 370 handle(target, request, request, response); 401 final HttpServletResponse response=(HttpServletResponse)async.getResponse(); local 406 handle(target, baseRequest, request, response); 407 LOG.debug("RESPONSE "+target+" "+connection.getResponse().getStatus()); 410 handle(target, baseRequest, request, response);
|
/external/libbrillo/brillo/http/ |
http_transport_curl_unittest.cc | 209 RequestID /* request_id */, std::unique_ptr<http::Response> /* resp */) {
|
/external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/ |
TestNanolets.java | 111 CloseableHttpResponse response = httpclient.execute(httpget); local 112 HttpEntity entity = response.getEntity(); 116 response.close(); 119 response = httpclient.execute(httppost); 120 entity = response.getEntity(); 124 response.close(); 127 response = httpclient.execute(httpgput); 128 entity = response.getEntity(); 132 response.close(); 135 response = httpclient.execute(httpdelete) 148 CloseableHttpResponse response = httpclient.execute(httpget); local 160 CloseableHttpResponse response = httpclient.execute(httpget); local 172 CloseableHttpResponse response = httpclient.execute(httpget); local 184 CloseableHttpResponse response = httpclient.execute(httpget); local 196 CloseableHttpResponse response = httpclient.execute(httpget); local 241 CloseableHttpResponse response = httpclient.execute(httpget); local 253 CloseableHttpResponse response = httpclient.execute(httpget); local 265 CloseableHttpResponse response = httpclient.execute(httpget); local 284 CloseableHttpResponse response = httpclient.execute(httphead); local 326 CloseableHttpResponse response = httpclient.execute(httphead); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/message/ |
SIPResponse.java | 62 * SIP Response structure. 73 implements javax.sip.message.Response, ResponseExt { 318 * Get the status line of the response. 354 /** Return true if the response is a final response. 362 /** Is this a final response? 363 *@return true if this is a final response. 404 * Check the response structure. Must have from, to CSEQ and VIA 673 * Generate a request from a response.
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Connection.java | 51 * used for multiple HTTP request/response exchanges. Connections may be direct 59 * which isn't so much a connection as a single request/response exchange. 289 Response response = tunnelConnection.readResponse().request(tunnelRequest).build(); local 290 // The response body from a CONNECT should be empty, but if it is not then we should consume 292 long contentLength = OkHeaders.contentLength(response); 300 switch (response.code()) { 313 route.getAddress().getAuthenticator(), response, route.getProxy()); 319 "Unexpected response code for CONNECT: " + response.code()) [all...] |
/external/chromium-trace/catapult/third_party/apiclient/googleapiclient/ |
http.py | 536 googleapiclient.errors.HttpError if the response was not a 2xx. 630 postproc: callable, called on the HTTP response and content to transform 681 A deserialized object model of the response body as determined 685 googleapiclient.errors.HttpError if the response was not a 2xx. 737 cb: Callback to be called on receiving the response headers, of signature: 740 # Where resp is an instance of httplib2.Response 760 response = None 761 while response is None: 762 status, response = request.next_chunk() 780 googleapiclient.errors.HttpError if the response was not a 2xx [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
descriptor_test.py | 283 class Response(messages.Message): 286 @remote.method(Request, Response) 294 expected.response_type = '%s.Response' % module_name
|
/external/libchrome/dbus/ |
bus.cc | 881 scoped_ptr<Response> response(Response::FromRawMessage(response_message)); 882 MessageReader reader(response.get()); [all...] |
object_manager.cc | 352 void ObjectManager::OnGetManagedObjects(Response* response) { 353 if (response != NULL) { 354 MessageReader reader(response);
|
/external/nanohttpd/ |
README.md | 61 public Response serve(IHTTPSession session) {
|
/external/nanohttpd/src/site/markdown/ |
index.md | 61 public Response serve(IHTTPSession session) {
|
/external/caliper/lib/ |
jersey-core-1.11.jar | |
/external/chromium-trace/catapult/third_party/webapp2/tests/ |
routing_test.py | 249 def __call__(self, request, response): 250 response.write('hello my adapter') 255 return webapp2.Response('hello')
|
/external/chromium-trace/catapult/third_party/webtest/webtest/ |
response.py | 23 class TestResponse(webob.Response): 56 "You used response.form, but no forms exist") 60 "You used response.form, but more than one form exists") 94 If this response is a redirect, follow that redirect. It is an 95 error if it is not a redirect response. Any keyword 106 Follow all redirects. If this response is not a redirect, do nothing. 111 response = self 113 while 300 <= response.status_int < 400 and remaining_redirects: 114 response = response._follow(**kw [all...] |
/external/libbrillo/brillo/dbus/ |
dbus_object_unittest.cc | 49 void Positive(std::unique_ptr<DBusMethodResponse<double>> response, 52 response->Return(x); 58 response->ReplyWithError(error.get()); 87 std::unique_ptr<DBusMethodResponse<std::string>> response, 89 response->Return(message->GetSender()); 143 void ExpectError(dbus::Response* response, const std::string& expected_code) { 144 EXPECT_EQ(dbus::Message::MESSAGE_ERROR, response->GetMessageType()); 145 EXPECT_EQ(expected_code, response->GetErrorName()); 160 auto response = testing::CallMethod(*dbus_object_, &method_call) local 173 auto response = testing::CallMethod(*dbus_object_, &method_call); local 186 auto response = testing::CallMethod(*dbus_object_, &method_call); local 199 auto response = testing::CallMethod(*dbus_object_, &method_call); local 209 auto response = testing::CallMethod(*dbus_object_, &method_call); local 224 auto response = testing::CallMethod(*dbus_object_, &method_call); local 237 auto response = testing::CallMethod(*dbus_object_, &method_call); local 250 auto response = testing::CallMethod(*dbus_object_, &method_call); local 261 auto response = testing::CallMethod(*dbus_object_, &method_call); local 274 auto response = testing::CallMethod(*dbus_object_, &method_call); local 287 auto response = testing::CallMethod(*dbus_object_, &method_call); local 297 auto response = testing::CallMethod(*dbus_object_, &method_call); local 310 auto response = testing::CallMethod(*dbus_object_, &method_call); local 323 auto response = testing::CallMethod(*dbus_object_, &method_call); local 334 auto response = testing::CallMethod(*dbus_object_, &method_call); local 344 auto response = testing::CallMethod(*dbus_object_, &method_call); local 354 auto response = testing::CallMethod(*dbus_object_, &method_call); local 368 auto response = testing::CallMethod(*dbus_object_, &method_call); local [all...] |
/system/tpm/attestation/server/ |
dbus_service_test.cc | 55 std::unique_ptr<dbus::Response> CallMethod(dbus::MethodCall* method_call) { 105 auto response = CallMethod(call.get()); local 106 dbus::MessageReader reader(response.get()); 128 auto response = CallMethod(call.get()); local 129 dbus::MessageReader reader(response.get()); 157 auto response = CallMethod(call.get()); local 158 dbus::MessageReader reader(response.get()); 188 auto response = CallMethod(call.get()); local 189 dbus::MessageReader reader(response.get()); 218 auto response = CallMethod(call.get()) local 256 auto response = CallMethod(call.get()); local 289 auto response = CallMethod(call.get()); local 319 auto response = CallMethod(call.get()); local 347 auto response = CallMethod(call.get()); local 374 auto response = CallMethod(call.get()); local [all...] |
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
response.py | 64 __all__ = ['Response'] 71 class Response(object): 73 Represents a WSGI response 78 unicode_errors = 'strict' # TODO: deprecate (why would response body have errors?) 161 """Reads a response from a file-like object (it must implement 164 It will read up to the end of the response, not the end of the 167 This reads the response as represented by ``str(resp)``; it 168 may not read every valid HTTP response properly. Responses 204 """Makes a copy of the response""" 292 The list of response header [all...] |
/packages/services/Telecomm/src/com/android/server/telecom/ |
Call.java | 35 import android.telecom.Response; [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
URLConnectionTest.java | 329 // Check that if we don't read to the end of a response, the next request on the 330 // recycled connection doesn't get the unread tail of the first request's response. 333 MockResponse response = new MockResponse().setChunkedBody("ABCDE\nFGHIJ\nKLMNO\nPQR", 8); local 335 server.enqueue(response); 336 server.enqueue(response); 350 MockResponse response = new MockResponse().setBody("ABCDEFGHIJKLMNOPQR"); local 352 server.enqueue(response); 353 server.enqueue(response); 354 server.enqueue(response); 365 MockResponse response = new MockResponse().setChunkedBody("ABCDEFGHIJKLMNOPQR", 5) local 1073 MockResponse response = new MockResponse(); local 1097 MockResponse response = new MockResponse().addHeader("WWW-Authenticate: challenge") local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
asptlb.h | 58 typedef class Response Response; 60 typedef struct Response Response; [all...] |