/external/tcpdump/tests/ |
D | aoe_1.out | 5 AoE length 534, Ver 1, Flags: [Response] 10 AoE length 1046, Ver 1, Flags: [Response] 11 AoE length 1046, Ver 1, Flags: [Response] 12 AoE length 1046, Ver 1, Flags: [Response] 13 AoE length 1046, Ver 1, Flags: [Response] 18 AoE length 1046, Ver 1, Flags: [Response] 19 AoE length 1046, Ver 1, Flags: [Response] 20 AoE length 1046, Ver 1, Flags: [Response] 21 AoE length 1046, Ver 1, Flags: [Response] 23 AoE length 1046, Ver 1, Flags: [Response] [all …]
|
D | aoe_1-v.out | 13 AoE length 534, Ver 1, Flags: [Response] 38 AoE length 1046, Ver 1, Flags: [Response] 43 AoE length 1046, Ver 1, Flags: [Response] 48 AoE length 1046, Ver 1, Flags: [Response] 53 AoE length 1046, Ver 1, Flags: [Response] 78 AoE length 1046, Ver 1, Flags: [Response] 83 AoE length 1046, Ver 1, Flags: [Response] 88 AoE length 1046, Ver 1, Flags: [Response] 93 AoE length 1046, Ver 1, Flags: [Response] 103 AoE length 1046, Ver 1, Flags: [Response] [all …]
|
/external/libbrillo/brillo/dbus/ |
D | dbus_param_reader_unittest.cc | 14 using dbus::Response; 20 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 29 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 44 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 65 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 88 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 108 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 129 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 142 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 158 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() [all …]
|
D | dbus_object.h | 243 template<typename Response, typename... Args> 246 const base::Callback<void(std::unique_ptr<Response>, Args...)>& handler) { in AddMethodHandler() argument 247 static_assert(std::is_base_of<DBusMethodResponseBase, Response>::value, in AddMethodHandler() 249 Handler<DBusInterfaceMethodHandler<Response, Args...>>::Add( in AddMethodHandler() 255 template<typename Response, typename... Args> 258 void (*handler)(std::unique_ptr<Response>, Args...)) { in AddMethodHandler() argument 259 static_assert(std::is_base_of<DBusMethodResponseBase, Response>::value, in AddMethodHandler() 261 Handler<DBusInterfaceMethodHandler<Response, Args...>>::Add( in AddMethodHandler() 267 template<typename Response, 274 void(Class::*handler)(std::unique_ptr<Response>, Args...)) { in AddMethodHandler() argument [all …]
|
D | dbus_param_writer_unittest.cc | 15 using dbus::Response; 21 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 28 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 52 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 72 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 79 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 107 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 131 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 138 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 166 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST()
|
D | data_serialization_unittest.cc | 19 using dbus::Response; 147 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 171 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 237 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 264 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 333 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 392 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 407 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 422 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() 437 std::unique_ptr<Response> message(Response::CreateEmpty().release()); in TEST() [all …]
|
D | dbus_method_response.cc | 41 SendRawResponse(std::unique_ptr<dbus::Response>()); in Abort() 45 std::unique_ptr<dbus::Response> response) { in SendRawResponse() 48 sender_.Run(scoped_ptr<dbus::Response>{response.release()}); in SendRawResponse() 51 std::unique_ptr<dbus::Response> 53 return std::unique_ptr<dbus::Response>{ in CreateCustomResponse() 54 dbus::Response::FromMethodCall(method_call_).release()}; in CreateCustomResponse()
|
D | dbus_object_internal_impl.h | 248 template<typename Response, typename... Args> 254 const base::Callback<void(std::unique_ptr<Response>, Args...)>& handler) in DBusInterfaceMethodHandler() argument 263 std::unique_ptr<Response> response(new Response(method_call, sender)); in HandleMethod() 279 base::Callback<void(std::unique_ptr<Response>, Args...)> handler_; 293 template<typename Response, typename... Args> 300 const base::Callback<void(std::unique_ptr<Response>, dbus::Message*, in DBusInterfaceMethodHandlerWithMessage() argument 310 std::unique_ptr<Response> response(new Response(method_call, sender)); in HandleMethod() 326 base::Callback<void(std::unique_ptr<Response>,
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Response.java | 36 public final class Response { class 44 private Response networkResponse; 45 private Response cacheResponse; 46 private final Response priorResponse; 50 private Response(Builder builder) { in Response() method in Response 157 public Response networkResponse() { in networkResponse() 167 public Response cacheResponse() { in cacheResponse() 177 public Response priorResponse() { in priorResponse() 229 private Response networkResponse; 230 private Response cacheResponse; [all …]
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | InterceptorTest.java | 60 final Response interceptorResponse = new Response.Builder() in applicationInterceptorsCanShortCircuitResponses() 69 @Override public Response intercept(Chain chain) throws IOException { in applicationInterceptorsCanShortCircuitResponses() 74 Response response = client.newCall(request).execute(); in applicationInterceptorsCanShortCircuitResponses() 82 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotShortCircuitResponses() 83 return new Response.Builder() in networkInterceptorsCannotShortCircuitResponses() 112 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotCallProceedMultipleTimes() 136 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotChangeServerAddress() 164 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsHaveConnectionAccess() 183 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsObserveNetworkHeaders() 192 Response networkResponse = chain.proceed(networkRequest); in networkInterceptorsObserveNetworkHeaders() [all …]
|
D | CacheTest.java | 178 Response response = client.newCall(request).execute(); in assertCached() 184 Response cached = cache.get(request); in assertCached() 220 Response response1 = client.newCall(request).execute(); in testResponseCaching() 231 Response response2 = client.newCall(request).execute(); in testResponseCaching() 257 Response response1 = client.newCall(request).execute(); in secureResponseCaching() 268 Response response2 = client.newCall(request).execute(); // Cached! in secureResponseCaching() 296 Response response1 = client.newCall(request).execute(); in responseCachingAndRedirects() 299 Response response2 = client.newCall(request).execute(); // Cached! in responseCachingAndRedirects() 318 Response response1 = client.newCall(request1).execute(); in redirectToCachedResult() 325 Response response2 = client.newCall(request2).execute(); in redirectToCachedResult() [all …]
|
/external/chromium-trace/catapult/third_party/webapp2/tests/ |
D | response_test.py | 27 rsp = webapp2.Response() 33 rsp = webapp2.Response() 39 rsp = webapp2.Response() 45 rsp = webapp2.Response() 51 rsp = webapp2.Response() 57 rsp = webapp2.Response() 64 rsp = webapp2.Response() 72 rsp = webapp2.Response() 106 rsp = webapp2.Response() 128 rsp = webapp2.Response(body='Page not found!', status=404) [all …]
|
/external/nanohttpd/webserver/src/main/java/fi/iki/elonen/ |
D | SimpleWebServer.java | 54 import fi.iki.elonen.NanoHTTPD.Response.IStatus; 266 protected Response getForbiddenResponse(String s) { in getForbiddenResponse() 267 …return newFixedLengthResponse(Response.Status.FORBIDDEN, NanoHTTPD.MIME_PLAINTEXT, "FORBIDDEN: " +… in getForbiddenResponse() 270 protected Response getInternalErrorResponse(String s) { in getInternalErrorResponse() 271 …return newFixedLengthResponse(Response.Status.INTERNAL_ERROR, NanoHTTPD.MIME_PLAINTEXT, "INTERNAL … in getInternalErrorResponse() 274 protected Response getNotFoundResponse() { in getNotFoundResponse() 275 …return newFixedLengthResponse(Response.Status.NOT_FOUND, NanoHTTPD.MIME_PLAINTEXT, "Error 404, fil… in getNotFoundResponse() 353 public static Response newFixedLengthResponse(IStatus status, String mimeType, String message) { in newFixedLengthResponse() 354 Response response = NanoHTTPD.newFixedLengthResponse(status, mimeType, message); in newFixedLengthResponse() 359 private Response respond(Map<String, String> headers, IHTTPSession session, String uri) { in respond() [all …]
|
/external/nanohttpd/websocket/src/test/java/fi/iki/elonen/ |
D | WebSocketResponseHandlerTest.java | 53 import fi.iki.elonen.NanoHTTPD.Response; 121 Response handshakeResponse = this.nanoWebSocketServer.serve(this.session); in testConnectionHeaderHandlesKeepAlive_FixingFirefoxConnectIssue() 128 Response handshakeResponse = this.nanoWebSocketServer.serve(this.session); in testHandshakeReturnsResponseWithExpectedHeaders() 140 Response handshakeResponse = this.nanoWebSocketServer.serve(this.session); in testMissingKeyReturnsErrorResponse() 143 assertEquals(Response.Status.BAD_REQUEST, handshakeResponse.getStatus()); in testMissingKeyReturnsErrorResponse() 149 Response handshakeResponse = this.nanoWebSocketServer.serve(this.session); in testWrongConnectionHeaderReturnsNullResponse() 156 Response handshakeResponse = this.nanoWebSocketServer.serve(this.session); in testWrongUpgradeHeaderReturnsNullResponse() 164 Response handshakeResponse = this.nanoWebSocketServer.serve(this.session); in testWrongWebsocketVersionReturnsErrorResponse() 167 assertEquals(Response.Status.BAD_REQUEST, handshakeResponse.getStatus()); in testWrongWebsocketVersionReturnsErrorResponse()
|
/external/libbrillo/brillo/http/ |
D | http_request.cc | 134 std::unique_ptr<Response> Request::GetResponseAndBlock( in GetResponseAndBlock() 137 return std::unique_ptr<Response>(); in GetResponseAndBlock() 138 std::unique_ptr<Response> response(new Response(connection_)); in GetResponseAndBlock() 293 Response::Response(const std::shared_ptr<Connection>& connection) in Response() function in brillo::http::Response 298 Response::~Response() { in ~Response() 302 bool Response::IsSuccessful() const { in IsSuccessful() 307 int Response::GetStatusCode() const { in GetStatusCode() 314 std::string Response::GetStatusText() const { in GetStatusText() 321 std::string Response::GetContentType() const { in GetContentType() 325 StreamPtr Response::ExtractDataStream(ErrorPtr* error) { in ExtractDataStream() [all …]
|
D | http_utils.h | 56 BRILLO_EXPORT std::unique_ptr<Response> SendRequestAndBlock( 68 BRILLO_EXPORT std::unique_ptr<Response> SendRequestWithNoDataAndBlock( 120 BRILLO_EXPORT std::unique_ptr<Response> GetAndBlock( 139 BRILLO_EXPORT std::unique_ptr<Response> HeadAndBlock( 156 BRILLO_EXPORT std::unique_ptr<Response> PostBinaryAndBlock( 195 BRILLO_EXPORT std::unique_ptr<Response> PostTextAndBlock( 219 BRILLO_EXPORT std::unique_ptr<Response> PostFormDataAndBlock( 241 BRILLO_EXPORT std::unique_ptr<Response> PostFormDataAndBlock( 263 BRILLO_EXPORT std::unique_ptr<Response> PostJsonAndBlock( 285 BRILLO_EXPORT std::unique_ptr<Response> PatchJsonAndBlock( [all …]
|
/external/libchrome/dbus/ |
D | mock_object_proxy.h | 29 Response*(MethodCall* method_call, 32 scoped_ptr<Response> CallMethodAndBlockWithErrorDetails( in CallMethodAndBlockWithErrorDetails() 36 return scoped_ptr<Response>( in CallMethodAndBlockWithErrorDetails() 39 MOCK_METHOD2(MockCallMethodAndBlock, Response*(MethodCall* method_call, 41 scoped_ptr<Response> CallMethodAndBlock(MethodCall* method_call, in CallMethodAndBlock() 43 return scoped_ptr<Response>(MockCallMethodAndBlock(method_call, in CallMethodAndBlock()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/beanstalk/ |
D | response.py | 24 if isinstance(value, Response): 43 class Response(BaseObject): class 45 super(Response, self).__init__() 331 class CheckDNSAvailabilityResponse(Response): 346 class CreateApplicationResponse(Response): 358 class CreateApplicationVersionResponse(Response): 370 class CreateConfigurationTemplateResponse(Response): 391 class CreateEnvironmentResponse(Response): 416 class CreateStorageLocationResponse(Response): 425 class DeleteApplicationResponse(Response): [all …]
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | InternalCache.java | 19 import com.squareup.okhttp.Response; 29 Response get(Request request) throws IOException; in get() 31 CacheRequest put(Response response) throws IOException; in put() 45 void update(Response cached, Response network) throws IOException; in update()
|
/external/nanohttpd/nanolets/src/main/java/fi/iki/elonen/router/ |
D | RouterNanoHTTPD.java | 54 import fi.iki.elonen.NanoHTTPD.Response.IStatus; 55 import fi.iki.elonen.NanoHTTPD.Response.Status; 70 … public Response get(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session); in get() 72 … public Response put(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session); in put() 74 …public Response post(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session); in post() 76 …public Response delete(UriResource uriResource, Map<String, String> urlParams, IHTTPSession sessio… in delete() 78 …public Response other(String method, UriResource uriResource, Map<String, String> urlParams, IHTTP… in other() 93 …public Response get(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session) { in get() 97 …public Response post(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session)… in post() 101 …public Response put(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session) { in put() [all …]
|
/external/nist-sip/java/javax/sip/message/ |
D | MessageFactory.java | 32 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 37 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 42 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() 46 Response createResponse(int statusCode, Request request, in createResponse() 50 Response createResponse(int statusCode, Request request, in createResponse() 54 Response createResponse(int statusCode, Request request) in createResponse() 57 Response createResponse(String response) throws ParseException; in createResponse()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/ |
D | RecordingOkAuthenticator.java | 20 import com.squareup.okhttp.Response; 26 public final List<Response> responses = new ArrayList<>(); 34 public Response onlyResponse() { in onlyResponse() 44 @Override public Request authenticate(Proxy proxy, Response response) { in authenticate() 52 @Override public Request authenticateProxy(Proxy proxy, Response response) { in authenticateProxy()
|
/external/nist-sip/java/javax/sip/ |
D | ResponseEvent.java | 4 import javax.sip.message.Response; 8 private Response mResponse; 12 Dialog dialog, Response response) { in ResponseEvent() 23 public Response getResponse() { in getResponse()
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | TestThread.java | 62 private final SynchronousQueue<Response> responseQueue = new SynchronousQueue<Response>(); 206 private Response getResponse(String methodName) throws Exception { in getResponse() 207 Response response = responseQueue.poll(TIMEOUT_MILLIS, TimeUnit.MILLISECONDS); in getResponse() 246 new Response(request.methodName, null, exception.getTargetException())); in run() 249 responseQueue.put(new Response(request.methodName, null, throwable)); in run() 252 responseQueue.put(new Response(request.methodName, result, null)); in run() 273 private static class Response { class in TestThread 278 Response(String methodName, Object result, Throwable throwable) { in Response() method in TestThread.Response
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
D | HttpDeleteRequestTest.java | 45 …this.testServer.response = NanoHTTPD.newFixedLengthResponse(NanoHTTPD.Response.Status.NO_CONTENT, … in testDeleteRequestThatDoesntSendBackResponseBody_EmptyString() 63 …this.testServer.response = NanoHTTPD.newChunkedResponse(NanoHTTPD.Response.Status.NO_CONTENT, Nano… in testDeleteRequestThatDoesntSendBackResponseBody_NullInputStream() 81 …this.testServer.response = NanoHTTPD.newFixedLengthResponse(NanoHTTPD.Response.Status.NO_CONTENT, … in testDeleteRequestThatDoesntSendBackResponseBody_NullString() 99 …this.testServer.response = NanoHTTPD.newFixedLengthResponse(NanoHTTPD.Response.Status.ACCEPTED, "a… in testDeleteRequestThatSendsBackResponseBody_Accepted() 118 …this.testServer.response = NanoHTTPD.newFixedLengthResponse(NanoHTTPD.Response.Status.OK, "applica… in testDeleteRequestThatSendsBackResponseBody_Success()
|