Searched refs:Response (Results 1 - 25 of 291) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/message/
H A DResponseExt.java3 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/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DResponse.h24 class Response FINAL : public Body {
27 virtual ~Response() { }
28 static Response* create(ExecutionContext*, Blob*, const Dictionary&, ExceptionState&);
29 static Response* create(ExecutionContext*, const String&, const Dictionary&, ExceptionState&);
30 static Response* create(ExecutionContext*, const ArrayBuffer*, const Dictionary&, ExceptionState&);
31 static Response* create(ExecutionContext*, const ArrayBufferView*, const Dictionary&, ExceptionState&);
32 static Response* create(ExecutionContext*, Blob*, const ResponseInit&, ExceptionState&);
33 static Response* create(ExecutionContext*, FetchResponseData*);
34 static Response* create(ExecutionContext*, const WebServiceWorkerResponse&);
36 // immutable to the user after Response creatio
[all...]
H A DResponse.cpp6 #include "Response.h"
49 Response* Response::create(ExecutionContext* context, Blob* body, const Dictionary& responseInit, ExceptionState& exceptionState)
54 Response* Response::create(ExecutionContext* context, const String& body, const Dictionary& responseInit, ExceptionState& exceptionState)
65 Response* Response::create(ExecutionContext* context, const ArrayBuffer* body, const Dictionary& responseInit, ExceptionState& exceptionState)
74 Response* Response::create(ExecutionContext* context, const ArrayBufferView* body, const Dictionary& responseInit, ExceptionState& exceptionState)
83 Response* Respons
223 Response::Response(ExecutionContext* context) function in class:blink::Response
231 Response::Response(const Response& copy_from) function in class:blink::Response
238 Response::Response(ExecutionContext* context, FetchResponseData* response) function in class:blink::Response
247 Response::Response(ExecutionContext* context, const WebServiceWorkerResponse& webResponse) function in class:blink::Response
[all...]
/external/nist-sip/java/javax/sip/
H A DServerTransaction.java3 import javax.sip.message.Response;
6 void sendResponse(Response response)
H A DResponseEvent.java4 import javax.sip.message.Response;
8 private Response mResponse;
12 Dialog dialog, Response response) {
23 public Response getResponse() {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DOkResponseCache.java26 Response get(Request request) throws IOException;
28 CacheRequest put(Response response) throws IOException;
44 void update(Response cached, Response network) throws IOException;
/external/chromium_org/content/browser/devtools/
H A Ddevtools_power_handler.h28 scoped_refptr<DevToolsProtocol::Response> OnStart(
30 scoped_refptr<DevToolsProtocol::Response> OnEnd(
32 scoped_refptr<DevToolsProtocol::Response> OnCanProfilePower(
34 scoped_refptr<DevToolsProtocol::Response> OnGetAccuracyLevel(
H A Drenderer_overrides_handler.h56 scoped_refptr<DevToolsProtocol::Response>
61 scoped_refptr<DevToolsProtocol::Response> CanEmulateNetworkConditions(
63 scoped_refptr<DevToolsProtocol::Response> ClearBrowserCache(
65 scoped_refptr<DevToolsProtocol::Response> ClearBrowserCookies(
69 scoped_refptr<DevToolsProtocol::Response> PageEnable(
71 scoped_refptr<DevToolsProtocol::Response> PageDisable(
73 scoped_refptr<DevToolsProtocol::Response> PageHandleJavaScriptDialog(
75 scoped_refptr<DevToolsProtocol::Response> PageNavigate(
77 scoped_refptr<DevToolsProtocol::Response> PageReload(
79 scoped_refptr<DevToolsProtocol::Response> PageGetNavigationHistor
[all...]
H A Ddevtools_protocol.cc65 scoped_refptr<DevToolsProtocol::Response>
67 return new DevToolsProtocol::Response(id_, result);
70 scoped_refptr<DevToolsProtocol::Response>
72 return new DevToolsProtocol::Response(id_, kErrorInternalError, message);
75 scoped_refptr<DevToolsProtocol::Response>
79 return new DevToolsProtocol::Response(id_, kErrorInvalidParams, message);
82 scoped_refptr<DevToolsProtocol::Response>
84 return new Response(id_, kErrorNoSuchMethod, "No such method");
87 scoped_refptr<DevToolsProtocol::Response>
89 return new Response(id
134 DevToolsProtocol::Response::Response(int id, base::DictionaryValue* result) function in class:content::DevToolsProtocol::Response
141 DevToolsProtocol::Response::Response(int id, function in class:content::DevToolsProtocol::Response
[all...]
H A Ddevtools_protocol.h26 class Response;
56 scoped_refptr<Response> SuccessResponse(base::DictionaryValue* result);
59 scoped_refptr<Response> InternalErrorResponse(const std::string& message);
62 scoped_refptr<Response> InvalidParamResponse(const std::string& param);
65 scoped_refptr<Response> NoSuchMethodErrorResponse();
68 scoped_refptr<Response> ServerErrorResponse(const std::string& message);
71 scoped_refptr<Response> AsyncResponsePromise();
86 class Response : public base::RefCountedThreadSafe<Response> { class in class:content::DevToolsProtocol
93 friend class base::RefCountedThreadSafe<Response>;
[all...]
H A Dtethering_handler.h26 scoped_refptr<DevToolsProtocol::Response> OnBind(
28 scoped_refptr<DevToolsProtocol::Response> OnUnbind(
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpDeleteRequestTest.java15 testServer.response = new NanoHTTPD.Response(NanoHTTPD.Response.Status.NO_CONTENT, NanoHTTPD.MIME_HTML, "");
33 testServer.response = new NanoHTTPD.Response(NanoHTTPD.Response.Status.NO_CONTENT, NanoHTTPD.MIME_HTML, (String)null);
51 testServer.response = new NanoHTTPD.Response(NanoHTTPD.Response.Status.NO_CONTENT, NanoHTTPD.MIME_HTML, (InputStream)null);
69 testServer.response = new NanoHTTPD.Response(NanoHTTPD.Response.Status.OK, "application/xml", "<body />");
88 testServer.response = new NanoHTTPD.Response(NanoHTTPD.Response
[all...]
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_protocol.h19 class Response;
47 scoped_ptr<Response> SuccessResponse(base::DictionaryValue* result);
50 scoped_ptr<Response> InvalidParamResponse(const std::string& param);
58 class Response { class in class:DevToolsProtocol
60 virtual ~Response();
71 Response(int id, int error_code, const std::string error_message);
72 Response(int id, base::DictionaryValue* result);
78 DISALLOW_COPY_AND_ASSIGN(Response);
102 static Response* ParseResponse(const std::string& json);
/external/chromium_org/content/test/data/service_worker/
H A Dfetch_event_reload.js9 var response = new Response(blob);
H A Dsync.js8 response = new Response(new Blob(), {
/external/nanohttpd/webserver/src/main/java/fi/iki/elonen/
H A DInternalRewrite.java5 import static fi.iki.elonen.NanoHTTPD.Response;
11 public class InternalRewrite extends Response {
/external/chromium_org/dbus/
H A Dmock_object_proxy.h29 Response*(MethodCall* method_call,
32 virtual scoped_ptr<Response> CallMethodAndBlockWithErrorDetails(
36 return scoped_ptr<Response>(
39 MOCK_METHOD2(MockCallMethodAndBlock, Response*(MethodCall* method_call,
41 virtual scoped_ptr<Response> CallMethodAndBlock(MethodCall* method_call,
43 return scoped_ptr<Response>(MockCallMethodAndBlock(method_call,
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dlink_error_detector_test.py10 from servlet import Response namespace
54 return Response(
58 return Response(status=404)
/external/chromium_org/net/quic/
H A Dquic_in_memory_cache.h41 class Response { class in class:net::QuicInMemoryCache
43 Response();
44 ~Response();
64 DISALLOW_COPY_AND_ASSIGN(Response);
73 const Response* GetResponse(const GURL& url) const;
93 typedef base::hash_map<std::string, Response*> ResponseMap;
/external/chromium_org/net/tools/quic/
H A Dquic_in_memory_cache.h42 class Response { class in class:net::tools::QuicInMemoryCache
44 Response() : response_type_(REGULAR_RESPONSE) {} function in class:net::tools::QuicInMemoryCache::Response
45 ~Response() {}
65 DISALLOW_COPY_AND_ASSIGN(Response);
74 const Response* GetResponse(const BalsaHeaders& request_headers) const;
97 typedef base::hash_map<std::string, Response*> ResponseMap;
/external/chromium_org/content/browser/appcache/
H A Dappcache_executable_handler.h24 // in 'Response' are empty and use_network is false, an error response is
26 struct Response { struct in class:content::AppCacheExecutableHandler
33 typedef base::Callback<void(const Response&)> ResponseCallback;
/external/nanohttpd/samples/src/main/java/fi/iki/elonen/
H A DHelloServer.java13 @Override public Response serve(IHTTPSession session) {
30 return new NanoHTTPD.Response(msg);
/external/nist-sip/java/gov/nist/javax/sip/
H A DResponseEventExt.java6 import javax.sip.message.Response;
16 Dialog dialog, Response response) {
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DAuthenticationHelper.java12 import javax.sip.message.Response;
30 * the specified Response (Challenge) and appends it to the challenged
55 public abstract ClientTransaction handleChallenge(Response challenge,
/external/chromium_org/chrome/browser/chromeos/dbus/
H A Dservice_provider_test_helper.h55 scoped_ptr<dbus::Response> CallMethod(dbus::MethodCall* method_call);
69 dbus::Response* MockCallMethodAndBlock(
84 void OnResponse(scoped_ptr<dbus::Response> response);
93 scoped_ptr<dbus::Response> response_;

Completed in 572 milliseconds

1234567891011>>