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

<<11121314

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/roboto/
awsqueryrequest.py 164 Response = {}
283 self.process_markers(self.Response)
452 response = self.main()
453 self.cli_formatter(response)
501 self._generic_cli_formatter(self.Response, data)
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 57 import javax.sip.message.Response;
840 * either by a 1xx Provisional Response for an early dialog or a 200OK
841 * Response for a committed dialog.
877 * Get the last response. This is used internally by the implementation.
880 * @return the last response received (for client transactions) or sent (for
888 * Get the JAIN interface response
890 public Response getResponse() {
891 return (Response) this.lastResponse;
    [all...]
TLSMessageChannel.java 55 import javax.sip.message.Response;
157 // Can drop this after response is sent potentially.
353 // JvB: send a 400 response for requests (except ACK)
407 // For response, this has already been recorded in the outgoing
493 SIPResponse response = sipRequest local
494 .createResponse(Response.SERVICE_UNAVAILABLE);
498 // Be a good citizen and send a decent response code back.
501 response.setHeader(retryAfter);
502 this.sendMessage(response);
517 .logError("Dropping Badly formatted response message >>>
    [all...]
SIPServerTransaction.java 61 import javax.sip.message.Response;
81 * send response+-----------+
83 * | | Proceeding| |send response
90 * send response | |send response |
94 * send response+-----------+ send response |
130 * | |send response
132 * |send response |
135 * send response+-----------+send response
    [all...]
  /system/core/libutils/
Looper.cpp 191 const Response& response = mResponses.itemAt(mResponseIndex++);
192 int ident = response.request.ident;
194 int fd = response.request.fd;
195 int events = response.events;
196 void* data = response.request.data;
353 // Invoke all response callbacks.
355 Response& response = mResponses.editItemAt(i);
356 if (response.request.ident == POLL_CALLBACK)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/
__init__.py 106 'Http', 'Response', 'ProxyInfo', 'HttpLib2Error', 'RedirectMissingLocation',
141 def __init__(self, desc, response, content):
142 self.response = response
200 def _get_end2end_headers(response):
202 hopbyhop.extend([x.strip() for x in response.get('connection', '').split(',')])
203 return [header for header in response.keys() if header not in hopbyhop]
395 def _decompressContent(response, new_content):
398 encoding = response.get('content-encoding', None)
404 response['content-length'] = str(len(content)
488 def response(self, response, content): member in class:Authentication
552 def response(self, response, content): member in class:DigestAuthentication
621 def response(self, response, content): member in class:HmacDigestAuthentication
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/
__init__.py 66 __all__ = ['Http', 'Response', 'ProxyInfo', 'HttpLib2Error',
85 def __init__(self, desc, response, content):
86 self.response = response
130 def _get_end2end_headers(response):
132 hopbyhop.extend([x.strip() for x in response.get('connection', '').split(',')])
133 return [header for header in list(response.keys()) if header not in hopbyhop]
324 def _decompressContent(response, new_content):
327 encoding = response.get('content-encoding', None)
333 response['content-length'] = str(len(content)
438 def response(self, response, content): member in class:Authentication
522 def response(self, response, content): member in class:DigestAuthentication
591 def response(self, response, content): member in class:HmacDigestAuthentication
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_auth_test.py 31 rsp = webapp2.Response()
67 rsp = webapp2.Response()
handler_test.py 16 def __init__(self, request, response):
17 self.response = response
18 response.write('I am not a RequestHandler but I work.')
21 return self.response
26 self.response.out.write('home sweet home')
29 self.response.out.write('home sweet home - POST')
34 self.response.out.write('home sweet home - PUT')
37 self.response.out.write('home sweet home - DELETE')
40 self.response.out.write('home sweet home - HEAD'
    [all...]
  /external/chromium-trace/catapult/third_party/WebOb/docs/comment-example-code/
example.py 6 from webob import Request, Response, html_escape
25 # Not an HTML response, we don't want to
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ecs/
item.py 28 """A Generic "Response Group", which can
30 specific response elements within an item"""
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
response.py 164 response = self.find_element(action, 'Response', Response)
165 if not hasattr(response, action + 'Result'):
167 setattr(response, action + 'Result', Element(result))
168 return response(connection=connection)
249 class Response(ResponseElement):
257 return super(Response, self).startElement(name, attrs, connection)
265 return (self._name or self.__class__.__name__)[:-len('Response')]
268 class ResponseResultList(Response)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/
AbstractHttpConnection.java 72 * to associate {@link Request} and {@link Response} instances with a {@link EndPoint}.
76 * pooling. The {@link Request}, {@link Response}, {@link HttpParser}, {@link HttpGenerator}
83 * response state and the continuation state. All three state machines must be driven
88 * response code is 101 (switch protocols), then the org.eclipse.jetty.io.Connection
92 * don't use 101 responses (eg CONNECT), the response should be sent and then the
120 protected final Response _response;
163 _response = new Response(this);
181 _response = new Response(this);
310 * @return Returns the response.
312 public Response getResponse(
    [all...]
AsyncContinuation.java 128 public void addListener(AsyncListener listener,ServletRequest request, ServletResponse response)
132 // TODO handle the request/response ???
348 final ServletResponse response)
359 if (_event==null || request!=_event.getSuppliedRequest() || response != _event.getSuppliedResponse() || context != _event.getServletContext())
360 _event=new AsyncEventState(context,request,response);
973 final ServletResponse response)
977 _responseWrapped=!(response instanceof Response);
978 doSuspend(context,request,response);
999 public void suspend(ServletResponse response)
1003 doSuspend(_connection.getRequest().getServletContext(),_connection.getRequest(),response); local
    [all...]
  /external/libbrillo/brillo/dbus/
exported_object_manager_unittest.cc 124 std::unique_ptr<dbus::Response> CallHandleGetManagedObjects() {
154 auto response = CallHandleGetManagedObjects(); local
155 dbus::MessageReader reader(response.get());
168 auto response = CallHandleGetManagedObjects(); local
169 dbus::MessageReader reader(response.get());
exported_property_set_unittest.cc 135 auto response = testing::CallMethod(p_->dbus_object_, method_call); local
136 ASSERT_EQ(dbus::Message::MESSAGE_ERROR, response->GetMessageType());
139 std::unique_ptr<dbus::Response> GetPropertyOnInterface(
151 std::unique_ptr<dbus::Response> SetPropertyOnInterface(
165 std::unique_ptr<dbus::Response> last_response_;
231 auto response = testing::CallMethod(p_->dbus_object_, &method_call); local
232 dbus::MessageReader response_reader(response.get());
235 // The response should just be a an empty array, since there are no properties
257 auto response = testing::CallMethod(p_->dbus_object_, &method_call); local
258 dbus::MessageReader response_reader(response.get())
340 auto response = GetPropertyOnInterface(kTestInterface1, kBoolPropName); local
348 auto response = GetPropertyOnInterface(kTestInterface1, kUint8PropName); local
356 auto response = GetPropertyOnInterface(kTestInterface1, kInt16PropName); local
364 auto response = GetPropertyOnInterface(kTestInterface2, kUint16PropName); local
372 auto response = GetPropertyOnInterface(kTestInterface2, kInt32PropName); local
380 auto response = GetPropertyOnInterface(kTestInterface3, kUint32PropName); local
388 auto response = GetPropertyOnInterface(kTestInterface3, kInt64PropName); local
396 auto response = GetPropertyOnInterface(kTestInterface3, kUint64PropName); local
404 auto response = GetPropertyOnInterface(kTestInterface3, kDoublePropName); local
412 auto response = GetPropertyOnInterface(kTestInterface3, kStringPropName); local
420 auto response = GetPropertyOnInterface(kTestInterface3, kPathPropName); local
428 auto response = GetPropertyOnInterface(kTestInterface3, kStringListPropName); local
439 auto response = GetPropertyOnInterface(kTestInterface3, kPathListPropName); local
450 auto response = GetPropertyOnInterface(kTestInterface3, kPathListPropName); local
463 auto response = SetPropertyOnInterface( local
470 auto response = SetPropertyOnInterface( local
477 auto response = SetPropertyOnInterface( local
485 auto response = SetPropertyOnInterface( local
511 auto response = SetPropertyOnInterface( local
525 auto response = SetPropertyOnInterface( local
541 auto response = SetPropertyOnInterface( local
549 auto response = SetPropertyOnInterface( local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/
test_connection.py 375 responses = [HTTPretty.Response(body="{'test': 'fail'}", status=500),
376 HTTPretty.Response(body="{'test': 'success'}", status=200)]
  /external/libbrillo/brillo/http/
http_transport_curl.cc 450 LOG(INFO) << "Response: " << connection->GetResponseStatusCode() << " ("
453 // Rewind the response data stream to the beginning so the clients can
462 std::unique_ptr<Response> resp{new Response{request_data->connection}};
http_utils_unittest.cc 28 fake::ServerResponse* response) {
29 response->Reply(status_code::Ok,
34 // Returns the request method as a plain text response.
36 fake::ServerResponse* response) {
37 response->ReplyText(
49 auto response = local
58 EXPECT_TRUE(response->IsSuccessful());
60 response->GetContentType());
61 EXPECT_EQ(custom_data, response->ExtractData());
73 std::unique_ptr<http::Response> response)
101 auto response = local
119 auto response = http::SendRequestAndBlock(request_type::kGet, local
136 auto response = http::SendRequestAndBlock(request_type::kPut, local
152 auto response = http::SendRequestWithNoDataAndBlock( local
193 auto response = http::SendRequestAndBlock( local
237 auto response = http::GetAndBlock(kMethodEchoUrl, {}, transport, nullptr); local
261 auto response = http::HeadAndBlock(kFakeUrl, transport, nullptr); local
291 auto response = http::PostBinaryAndBlock(kFakeUrl, local
318 auto response = http::PostTextAndBlock(kFakeUrl, local
334 auto response = http::PostFormDataAndBlock( local
354 auto response = http::PostFormDataAndBlock( local
392 auto response = local
423 auto response = http::PostFormDataAndBlock( local
438 auto response = http::GetAndBlock("http:\/\/bad.url", {}, transport, nullptr); local
454 auto response = http::SendRequestWithNoDataAndBlock( local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
base_api_test.py 96 http_response = http_wrapper.Response(
batch.py 26 'RequestResponseAndHandler', ['request', 'response', 'handler'])):
30 This contains an HTTP request, its response, and a callback for handling
31 the response from the server.
35 response: The http_wrapper.Response object returned from the server.
36 handler: A callback function accepting two arguments, response
37 and exception. Response is an http_wrapper.Response object, and
47 """Holds request and response information for each request.
55 response: A http_wrapper.Response object given by the server as
89 def response(self): member in class:BatchApiRequest.ApiCall
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
webapp_test_util.py 135 """Check that the web response is as expected.
166 self.handler.response.wsgi_write(start_response)
182 self.response = webapp.Response()
184 self.handler.initialize(self.request, self.response)
  /external/pdfium/fpdfsdk/src/fpdfxfa/
fpdfxfa_app.cpp 194 void CPDFXFA_App::Response(CFX_WideString& wsAnswer,
  /frameworks/base/core/java/android/accounts/
AccountManager.java 593 throw new AuthenticatorException("no result in response");
638 throw new AuthenticatorException("no result in response");
693 throw new AuthenticatorException("no result in response");
    [all...]
  /system/webservd/libwebserv/
dbus_protocol_handler.cc 227 std::unique_ptr<Response>{new ResponseImpl{this, request_id}});

Completed in 524 milliseconds

<<11121314