| /external/oj-libjdwp/src/share/back/ | 
| D | invoker.c | 102 createGlobalRefs(JNIEnv *env, InvokeRequest *request)  in createGlobalRefs()  argument115     if ( request->argumentCount > 0 ) {  in createGlobalRefs()
 117         argRefs = jvmtiAllocate((jint)(request->argumentCount*sizeof(jobject)));  in createGlobalRefs()
 122             (void)memset(argRefs, 0, request->argumentCount*sizeof(jobject));  in createGlobalRefs()
 127         saveGlobalRef(env, request->clazz, &clazz);  in createGlobalRefs()
 133     if ( error == JVMTI_ERROR_NONE && request->instance != NULL ) {  in createGlobalRefs()
 134         saveGlobalRef(env, request->instance, &instance);  in createGlobalRefs()
 142         argumentTag = firstArgumentTypeTag(request->methodSignature, &cursor);  in createGlobalRefs()
 143         argument = request->arguments;  in createGlobalRefs()
 145             if ( argIndex > request->argumentCount ) {  in createGlobalRefs()
 [all …]
 
 | 
| /external/e2fsprogs/debugfs/ | 
| D | debug_cmds.ct | 7 request do_show_debugfs_params, "Show debugfs parameters",10 request do_open_filesys, "Open a filesystem",
 13 request do_close_filesys, "Close the filesystem",
 16 request do_freefrag, "Report free space fragmentation",
 19 request do_features, "Set/print superblock features",
 22 request do_dirty_filesys, "Mark the filesystem as dirty",
 25 request do_init_filesys, "Initialize a filesystem (DESTROYS DATA)",
 28 request do_show_super_stats, "Show superblock statistics",
 31 request do_ncheck, "Do inode->name translation",
 34 request do_icheck, "Do block->inode translation",
 [all …]
 
 | 
| D | ro_debug_cmds.ct | 9 request do_show_debugfs_params, "Show debugfs parameters",12 request do_open_filesys, "Open a filesystem",
 15 request do_close_filesys, "Close the filesystem",
 18 request do_freefrag, "Report free space fragmentation",
 21 request do_show_super_stats, "Show superblock statistics",
 24 request do_ncheck, "Do inode->name translation",
 27 request do_icheck, "Do block->inode translation",
 30 request do_chroot, "Change root directory",
 33 request do_change_working_dir, "Change working directory",
 36 request do_list_dir, "List directory",
 [all …]
 
 | 
| /external/crosvm/system_api/src/bindings/client/ | 
| D | org_chromium_userdataauth.rs | 8     fn is_mounted(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in is_mounted()9     fn unmount(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in unmount()
 10     fn mount(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in mount()
 11     fn remove(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in remove()
 12     fn list_keys(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in list_keys()
 13     fn get_key_data(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in get_key_data()
 14     fn check_key(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in check_key()
 15     fn add_key(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in add_key()
 16     fn remove_key(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in remove_key()
 17     fn mass_remove_keys(&self, request: Vec<u8>) -> Result<Vec<u8>, dbus::Error>;  in mass_remove_keys()
 [all …]
 
 | 
| /external/python/google-auth-library-python/tests/compute_engine/ | 
| D | test__metadata.py | 39     request = mock.create_autospec(transport.Request)41         request.side_effect = [exceptions.TransportError(), response]
 43         request.return_value = response
 45     return request
 49     request = make_request("", headers=_metadata._METADATA_HEADERS)
 51     assert _metadata.ping(request)
 53     request.assert_called_once_with(
 62     request = make_request("", headers=_metadata._METADATA_HEADERS, retry=True)
 64     assert _metadata.ping(request)
 66     request.assert_called_with(
 [all …]
 
 | 
| /external/volley/core/src/main/java/com/android/volley/ | 
| D | RequestQueue.java | 32  * A request dispatch queue with a thread pool of dispatchers.34  * <p>Calling {@link #add(Request)} will enqueue the given Request for dispatch, resolving from
 41     // TODO: This should not be a generic class, because the request type can't be determined at
 46         /** Called when a request has finished processing. */
 47         void onRequestFinished(Request<T> request);  in onRequestFinished()  argument
 50     /** Request event types the listeners {@link RequestEventListener} will be notified about. */
 61         /** The request was added to the queue. */
 63         /** Cache lookup started for the request. */
 66          * Cache lookup finished for the request and cached response is delivered or request is
 70         /** Network dispatch started for the request. */
 [all …]
 
 | 
| D | NetworkDispatcher.java | 38     private final BlockingQueue<Request<?>> mQueue;58             BlockingQueue<Request<?>> queue,  in NetworkDispatcher()
 78     private void addTrafficStatsTag(Request<?> request) {  in addTrafficStatsTag()  argument
 79         // Tag the request (if API >= 14)  in addTrafficStatsTag()
 81             TrafficStats.setThreadStatsTag(request.getTrafficStatsTag());  in addTrafficStatsTag()
 105     // This is needed to avoid keeping previous request references alive for an indeterminate amount
 109         // Take a request from the queue.  in processRequest()
 110         Request<?> request = mQueue.take();  in processRequest()  local
 111         processRequest(request);  in processRequest()
 115     void processRequest(Request<?> request) {  in processRequest()  argument
 [all …]
 
 | 
| /external/glide/library/src/main/java/com/bumptech/glide/manager/ | 
| D | RequestTracker.java | 3 import com.bumptech.glide.request.Request;15 …// though the user still would like the request to finish. Weak references are therefore only real…
 19 …private final Set<Request> requests = Collections.newSetFromMap(new WeakHashMap<Request, Boolean>(…
 23      * Starts tracking the given request.
 25     public void runRequest(Request request) {  in runRequest()  argument
 26         requests.add(request);  in runRequest()
 28             request.begin();  in runRequest()
 33     void addRequest(Request request) {  in addRequest()  argument
 34         requests.add(request);  in addRequest()
 38      * Stops tracking the given request.
 [all …]
 
 | 
| /external/tensorflow/tensorflow/compiler/xla/client/ | 
| D | client.cc | 42   TransferToClientRequest request;  in Transfer()  local43   *request.mutable_data() = data.handle();  in Transfer()
 45     *request.mutable_shape_with_layout() = shape_with_layout->ToProto();  in Transfer()
 49   VLOG(1) << "making transfer request";  in Transfer()
 50   VLOG(3) << "TransferToClientRequest: {" << request.DebugString() << "}";  in Transfer()
 51   Status s = stub_->TransferToClient(&request, &response);  in Transfer()
 52   VLOG(1) << "done with request";  in Transfer()
 62         "TransferToClient request");  in Transfer()
 69   TransferToServerRequest request;  in TransferToServer()  local
 70   *request.mutable_literal() = literal.ToProto();  in TransferToServer()
 [all …]
 
 | 
| /external/libdrm/amdgpu/ | 
| D | amdgpu_gpu_info.c | 36 	struct drm_amdgpu_info request;  in amdgpu_query_info()  local38 	memset(&request, 0, sizeof(request));  in amdgpu_query_info()
 39 	request.return_pointer = (uintptr_t)value;  in amdgpu_query_info()
 40 	request.return_size = size;  in amdgpu_query_info()
 41 	request.query = info_id;  in amdgpu_query_info()
 43 	return drmCommandWrite(dev->fd, DRM_AMDGPU_INFO, &request,  in amdgpu_query_info()
 50 	struct drm_amdgpu_info request;  in amdgpu_query_crtc_from_id()  local
 52 	memset(&request, 0, sizeof(request));  in amdgpu_query_crtc_from_id()
 53 	request.return_pointer = (uintptr_t)result;  in amdgpu_query_crtc_from_id()
 54 	request.return_size = sizeof(*result);  in amdgpu_query_crtc_from_id()
 [all …]
 
 | 
| /external/mtools/ | 
| D | devices.h | 47 UNUSED(static __inline__ void RR_INIT(struct floppy_raw_cmd *request))  in UNUSED()  argument49 	request->data = 0;  in UNUSED()
 50 	request->length = 0;  in UNUSED()
 51 	request->cmd_count = 9;  in UNUSED()
 52 	request->flags = FD_RAW_INTR | FD_RAW_NEED_SEEK | FD_RAW_NEED_DISK  in UNUSED()
 57 	request->cmd[1] = 0;  in UNUSED()
 58 	request->cmd[6] = 0;  in UNUSED()
 59 	request->cmd[7] = 0x1b;  in UNUSED()
 60 	request->cmd[8] = 0xff;  in UNUSED()
 61 	request->reply_count = 0;  in UNUSED()
 [all …]
 
 | 
| /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ | 
| D | InterceptorTest.java | 56     Request request = new Request.Builder()  in applicationInterceptorsCanShortCircuitResponses()  local61         .request(request)  in applicationInterceptorsCanShortCircuitResponses()
 74     Response response = client.newCall(request).execute();  in applicationInterceptorsCanShortCircuitResponses()
 84             .request(chain.request())  in networkInterceptorsCannotShortCircuitResponses()
 94     Request request = new Request.Builder()  in networkInterceptorsCannotShortCircuitResponses()  local
 99       client.newCall(request).execute();  in networkInterceptorsCannotShortCircuitResponses()
 113         chain.proceed(chain.request());  in networkInterceptorsCannotCallProceedMultipleTimes()
 114         return chain.proceed(chain.request());  in networkInterceptorsCannotCallProceedMultipleTimes()
 119     Request request = new Request.Builder()  in networkInterceptorsCannotCallProceedMultipleTimes()  local
 124       client.newCall(request).execute();  in networkInterceptorsCannotCallProceedMultipleTimes()
 [all …]
 
 | 
| D | CallTest.java | 127     Request request = new Request.Builder()  in get()  local132     executeSynchronously(request)  in get()
 149     Request request = new Request.Builder()  in buildRequestUsingHttpUrl()  local
 152     assertEquals(httpUrl, request.httpUrl());  in buildRequestUsingHttpUrl()
 154     executeSynchronously(request).assertSuccessful();  in buildRequestUsingHttpUrl()
 158     Request.Builder requestBuilder = new Request.Builder();  in invalidScheme()
 168     Request.Builder requestBuilder = new Request.Builder();  in invalidPort()
 180     Request request = new Request.Builder()  in getReturns500()  local
 184     executeSynchronously(request)  in getReturns500()
 209     Request request = new Request.Builder()  in repeatedHeaderNames()  local
 [all …]
 
 | 
| D | ConnectionReuseTest.java | 45     Request request = new Request.Builder()  in connectionsAreReused()  local48     assertConnectionReused(request, request);  in connectionsAreReused()
 56     Request request = new Request.Builder()  in connectionsAreReusedWithHttp2()  local
 59     assertConnectionReused(request, request);  in connectionsAreReusedWithHttp2()
 66     Request requestA = new Request.Builder()  in connectionsAreNotReusedWithRequestConnectionClose()
 70     Request requestB = new Request.Builder()  in connectionsAreNotReusedWithRequestConnectionClose()
 82     Request requestA = new Request.Builder()  in connectionsAreNotReusedWithResponseConnectionClose()
 85     Request requestB = new Request.Builder()  in connectionsAreNotReusedWithResponseConnectionClose()
 98     Request request = new Request.Builder()  in connectionsAreNotReusedWithUnknownLengthResponseBody()  local
 101     assertConnectionNotReused(request, request);  in connectionsAreNotReusedWithUnknownLengthResponseBody()
 [all …]
 
 | 
| /external/tensorflow/tensorflow/compiler/xla/rpc/ | 
| D | grpc_stub.cc | 30 Status GRPCStub::TransferToClient(const TransferToClientRequest* request,  in TransferToClient()  argument32   return MakeRPC([this, request, response](::grpc::ClientContext* context) {  in TransferToClient()
 33     return grpc_stub_->TransferToClient(context, *request, response);  in TransferToClient()
 37 Status GRPCStub::TransferToServer(const TransferToServerRequest* request,  in TransferToServer()  argument
 39   return MakeRPC([this, request, response](::grpc::ClientContext* context) {  in TransferToServer()
 40     return grpc_stub_->TransferToServer(context, *request, response);  in TransferToServer()
 44 Status GRPCStub::TransferToInfeed(const TransferToInfeedRequest* request,  in TransferToInfeed()  argument
 46   return MakeRPC([this, request, response](::grpc::ClientContext* context) {  in TransferToInfeed()
 47     return grpc_stub_->TransferToInfeed(context, *request, response);  in TransferToInfeed()
 51 Status GRPCStub::TransferFromOutfeed(const TransferFromOutfeedRequest* request,  in TransferFromOutfeed()  argument
 [all …]
 
 | 
| /external/cronet/net/test/embedded_test_server/ | 
| D | http_request_unittest.cc | 16   // Process request in chunks to check if the parser deals with border cases.  in TEST()31   // Content data and another request in the same chunk (possible in http/1.1).  in TEST()
 35   // Fetch the first request and validate it.  in TEST()
 37     std::unique_ptr<HttpRequest> request = parser.GetRequest();  in TEST()  local
 38     EXPECT_EQ("/foobar.html", request->relative_url);  in TEST()
 39     EXPECT_EQ("POST", request->method_string);  in TEST()
 40     EXPECT_EQ(METHOD_POST, request->method);  in TEST()
 41     EXPECT_EQ("1234567890", request->content);  in TEST()
 42     ASSERT_EQ(3u, request->headers.size());  in TEST()
 44     EXPECT_EQ(1u, request->headers.count("Host"));  in TEST()
 [all …]
 
 | 
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/test/java/com/google/android/exoplayer2/testutil/ | 
| D | WebServerDispatcherTest.java | 25 import okhttp3.Request;37 // cases of the WebServerDispatcher's Accept-Encoding header handling. If passed a request with no
 42 // a request with *no* Accept-Encoding header (since it's impossible to send this using OkHttp).
 123     Request request = new Request.Builder().url(mockWebServer.url(RANGE_SUPPORTED_PATH)).build();  in rangeRequestsSupported_handlesConventionalRequest()  local
 124     try (Response response = client.newCall(request).execute()) {  in rangeRequestsSupported_handlesConventionalRequest()
 136     Request request =  in rangeRequestsSupported_boundedRange()  local
 137         new Request.Builder()  in rangeRequestsSupported_boundedRange()
 141     try (Response response = client.newCall(request).execute()) {  in rangeRequestsSupported_boundedRange()
 154     Request request =  in rangeRequestsSupported_startOnly()  local
 155         new Request.Builder()  in rangeRequestsSupported_startOnly()
 [all …]
 
 | 
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testutils/src/test/java/com/google/android/exoplayer2/testutil/ | 
| D | WebServerDispatcherTest.java | 25 import okhttp3.Request;37 // cases of the WebServerDispatcher's Accept-Encoding header handling. If passed a request with no
 42 // a request with *no* Accept-Encoding header (since it's impossible to send this using OkHttp).
 123     Request request = new Request.Builder().url(mockWebServer.url(RANGE_SUPPORTED_PATH)).build();  in rangeRequestsSupported_handlesConventionalRequest()  local
 124     try (Response response = client.newCall(request).execute()) {  in rangeRequestsSupported_handlesConventionalRequest()
 136     Request request =  in rangeRequestsSupported_boundedRange()  local
 137         new Request.Builder()  in rangeRequestsSupported_boundedRange()
 141     try (Response response = client.newCall(request).execute()) {  in rangeRequestsSupported_boundedRange()
 154     Request request =  in rangeRequestsSupported_startOnly()  local
 155         new Request.Builder()  in rangeRequestsSupported_startOnly()
 [all …]
 
 | 
| /external/volley/core/src/test/java/com/android/volley/toolbox/ | 
| D | HurlStackTest.java | 28 import com.android.volley.Request;29 import com.android.volley.Request.Method;
 74                             Request<?> request, HttpURLConnection connection) {  in setUp()
 76                                 super.createInputStream(request, connection));  in setUp()
 81                             Request<?> request, HttpURLConnection connection, int length)  in setUp()
 83                         if (request instanceof MonitoredRequest) {  in setUp()
 85                                     super.createOutputStream(request, connection, length),  in setUp()
 86                                     (MonitoredRequest) request,  in setUp()
 89                         return super.createOutputStream(request, connection, length);  in setUp()
 96         TestRequest.DeprecatedGet request = new TestRequest.DeprecatedGet();  in connectionForDeprecatedGetRequest()  local
 [all …]
 
 | 
| D | HttpClientStackTest.java | 22 import com.android.volley.Request.Method;42         TestRequest.DeprecatedGet request = new TestRequest.DeprecatedGet();  in createDeprecatedGetRequest()  local
 43         assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);  in createDeprecatedGetRequest()
 45         HttpUriRequest httpRequest = HttpClientStack.createHttpRequest(request, null);  in createDeprecatedGetRequest()
 51         TestRequest.DeprecatedPost request = new TestRequest.DeprecatedPost();  in createDeprecatedPostRequest()  local
 52         assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST);  in createDeprecatedPostRequest()
 54         HttpUriRequest httpRequest = HttpClientStack.createHttpRequest(request, null);  in createDeprecatedPostRequest()
 60         TestRequest.Get request = new TestRequest.Get();  in createGetRequest()  local
 61         assertEquals(request.getMethod(), Method.GET);  in createGetRequest()
 63         HttpUriRequest httpRequest = HttpClientStack.createHttpRequest(request, null);  in createGetRequest()
 [all …]
 
 | 
| D | RequestTest.java | 23 import com.android.volley.Request;39                 Request.class.getConstructor(  in publicMethods()
 42         assertNotNull(Request.class.getMethod("getMethod"));  in publicMethods()
 43         assertNotNull(Request.class.getMethod("setTag", Object.class));  in publicMethods()
 44         assertNotNull(Request.class.getMethod("getTag"));  in publicMethods()
 45         assertNotNull(Request.class.getMethod("getErrorListener"));  in publicMethods()
 46         assertNotNull(Request.class.getMethod("getTrafficStatsTag"));  in publicMethods()
 47         assertNotNull(Request.class.getMethod("setRetryPolicy", RetryPolicy.class));  in publicMethods()
 48         assertNotNull(Request.class.getMethod("addMarker", String.class));  in publicMethods()
 49         assertNotNull(Request.class.getDeclaredMethod("finish", String.class));  in publicMethods()
 [all …]
 
 | 
| /external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/ | 
| D | MainTest.java | 18 import com.squareup.okhttp.Request;30     Request request = fromArgs("http://example.com").createRequest();  in simple()  local
 31     assertEquals("GET", request.method());  in simple()
 32     assertEquals("http://example.com/", request.urlString());  in simple()
 33     assertNull(request.body());  in simple()
 37     Request request = fromArgs("-X", "PUT", "-d", "foo", "http://example.com").createRequest();  in put()  local
 38     assertEquals("PUT", request.method());  in put()
 39     assertEquals("http://example.com/", request.urlString());  in put()
 40     assertEquals(3, request.body().contentLength());  in put()
 44     Request request = fromArgs("-d", "foo", "http://example.com").createRequest();  in dataPost()  local
 [all …]
 
 | 
| /external/python/cpython2/Lib/ | 
| D | SocketServer.py | 15 For request-based servers (including socket-based):17 - client address verification before further looking at the request
 19          at the request before anything else, e.g. logging)
 21         - synchronous (one request is handled at a time)
 22         - forking (each request is handled by a new process)
 23         - threading (each request is handled by a new thread)
 65 with your request handler class.
 67 The request handler class must be different for datagram or stream
 68 services.  This can be hidden by using the request handler
 83 class will essentially render the service "deaf" while one request is
 [all …]
 
 | 
| /external/chromium-trace/catapult/third_party/polymer/components/iron-ajax/test/ | 
| D | iron-request.html | 13   <title>iron-request</title>20   <link rel="import" href="../iron-request.html">
 25       <iron-request></iron-request>
 29     suite('<iron-request>', function() {
 32       var request;
 71         request = fixture('TrivialRequest');
 95           request.send(successfulRequestOptions);
 99           expect(request.response).to.be.ok;
 103           request.send(synchronousSuccessfulRequestOptions);
 105           expect(request.xhr.async).to.be.eql(false);
 [all …]
 
 | 
| /external/wayland-protocols/chromium.org/unstable/remote-shell/ | 
| D | remote-shell-unstable-v2.xml | 53     <request name="destroy" type="destructor">61     </request>
 72     <request name="get_remote_surface">
 86     </request>
 88     <request name="get_notification_surface">
 96     </request>
 105     <request name="get_input_method_surface" since="1">
 112     </request>
 114     <request name="get_toast_surface" since="1">
 121     </request>
 [all …]
 
 |