HomeSort by relevance Sort by last modified time
    Searched refs:Response (Results 1 - 25 of 264) 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/chromium_org/chrome/test/webdriver/commands/
response.h 16 // A simple class that encapsulates the information describing the response to
20 class Response {
22 // Creates a new |Response| with a default status of |kSuccess| and a
24 Response();
25 ~Response();
33 // Sets the |value| of this response, assuming ownership of the object in the
37 // Configures this response to report the given error. Ownership of the error
41 // Sets a JSON field in this response. The |key| may be a "." delimitted
47 // Returns a pointer to the actual response dictionary.
50 // Returns this response as a JSON string
    [all...]
response.cc 5 #include "chrome/test/webdriver/commands/response.h"
27 Response::Response() {
32 Response::~Response() {}
34 ErrorCode Response::GetStatus() const {
41 void Response::SetStatus(ErrorCode status) {
45 const Value* Response::GetValue() const {
51 void Response::SetValue(Value* value) {
55 void Response::SetError(Error* error)
    [all...]
url_command.h 15 class Response;
28 virtual void ExecuteGet(Response* const response) OVERRIDE;
29 virtual void ExecutePost(Response* const response) OVERRIDE;
html5_storage_commands.h 19 class Response;
32 virtual void ExecuteGet(Response* const response) OVERRIDE;
35 virtual void ExecutePost(Response* const response) OVERRIDE;
38 virtual void ExecuteDelete(Response* const response) OVERRIDE;
54 virtual void ExecuteGet(Response* const response) OVERRIDE;
57 virtual void ExecuteDelete(Response* const response) OVERRIDE
    [all...]
cookie_commands.h 20 class Response;
36 virtual void ExecuteDelete(Response* const response) OVERRIDE;
37 virtual void ExecuteGet(Response* const response) OVERRIDE;
38 virtual void ExecutePost(Response* const response) OVERRIDE;
53 virtual bool Init(Response* const response) OVERRIDE;
57 virtual void ExecuteDelete(Response* const response) OVERRIDE
    [all...]
window_commands.h 19 class Response;
29 virtual void ExecuteGet(Response* const response) OVERRIDE;
30 virtual void ExecutePost(Response* const response) OVERRIDE;
44 virtual void ExecuteGet(Response* const response) OVERRIDE;
45 virtual void ExecutePost(Response* const response) OVERRIDE;
58 virtual void ExecutePost(Response* const response) OVERRIDE
    [all...]
html5_location_commands.h 19 class Response;
31 virtual void ExecuteGet(Response* const response) OVERRIDE;
34 virtual void ExecutePost(Response* const response) OVERRIDE;
session_with_id.h 16 class Response;
34 virtual void ExecuteGet(Response* const response) OVERRIDE;
35 virtual void ExecuteDelete(Response* const response) OVERRIDE;
webdriver_command.h 19 class Response;
35 virtual bool Init(Response* const response) OVERRIDE;
37 virtual void Finish(Response* const response) OVERRIDE;
chrome_commands.h 20 class Response;
33 virtual void ExecuteGet(Response* const response) OVERRIDE;
36 virtual void ExecutePost(Response* const response) OVERRIDE;
49 virtual bool Init(Response* const response) OVERRIDE;
56 virtual void ExecuteGet(Response* const response) OVERRIDE;
59 virtual void ExecutePost(Response* const response) OVERRIDE
    [all...]
appcache_status_command.h 19 class Response;
30 virtual void ExecuteGet(Response* const response) OVERRIDE;
browser_connection_commands.h 19 class Response;
33 virtual void ExecuteGet(Response* const response) OVERRIDE;
create_session.h 15 class Response;
30 virtual void ExecutePost(Response* const response) OVERRIDE;
execute_async_script_command.h 19 class Response;
33 virtual void ExecutePost(Response* const response) OVERRIDE;
execute_command.h 15 class Response;
30 virtual void ExecutePost(Response* const response) OVERRIDE;
file_upload_command.h 19 class Response;
28 virtual void ExecutePost(Response* const response) OVERRIDE;
keys_command.h 20 class Response;
30 virtual void ExecutePost(Response* const response) OVERRIDE;
log_command.h 19 class Response;
28 virtual void ExecutePost(Response* const response) OVERRIDE;
screenshot_command.h 19 class Response;
30 virtual void ExecuteGet(Response* const response) OVERRIDE;
source_command.h 19 class Response;
30 virtual void ExecuteGet(Response* const response) OVERRIDE;
  /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...]
  /external/chromium_org/net/tools/quic/
quic_in_memory_cache.h 30 // Container for response header/body pairs.
31 class Response {
33 Response() {}
34 ~Response() {}
52 DISALLOW_COPY_AND_ASSIGN(Response);
56 // Retrieve a response from this cache for a given request.
57 // If no appropriate response exists, NULL is returned.
59 const Response* GetResponse(const BalsaHeaders& request_headers) const;
61 // Add a response to the cache.
69 typedef base::hash_map<std::string, Response*> ResponseMap
    [all...]

Completed in 359 milliseconds

1 2 3 4 5 6 7 8 91011