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

<<11121314151617181920>>

  /packages/services/Car/evs/manager/
HalCamera.cpp 37 // Create the client camera interface object
38 sp<VirtualCamera> client = new VirtualCamera(this); local
39 if (client == nullptr) {
40 ALOGE("Failed to create client camera object");
45 if (!changeFramesInFlight(client->getAllowedBuffers())) {
46 // Gah! We couldn't get enough buffers, so we can't support this client
47 // Null the pointer, dropping our reference, thus destroying the client object
48 client = nullptr;
52 // Add this client to our ownership list via weak pointer
53 mClients.push_back(client);
    [all...]
  /prebuilts/tools/common/google-api-java-client/1.23.0/
google-api-java-client-min-repackaged-1.23.0.jar 
  /external/autotest/client/common_lib/cros/
cr50_utils.py 9 from autotest_lib.client.common_lib import error
185 def GetSavedVersion(client):
195 if not client.path_exists(CR50_VERSION):
198 result = client.run(GET_CR50_VERSION).stdout.strip()
202 def GetRLZ(client):
206 client: the object to run commands on
211 result = client.run('vpd -g rlz_brand_code', ignore_status=True)
218 def SetRLZ(client, rlz):
222 client: the object to run commands on
232 if rlz == GetRLZ(client)
    [all...]
  /external/nos/host/android/citadel/validation/
citadel_validation_tool.cpp 61 bool ReadRegister(NuggetClientInterface& client, uint32_t address, uint32_t* value) {
67 const uint32_t status = client.CallApp(APP_ID_NUGGET, NUGGET_PARAM_READ32, buffer, &buffer);
84 bool WriteRegister(NuggetClientInterface& client, uint32_t address, uint32_t value) {
92 const uint32_t status = client.CallApp(APP_ID_NUGGET, NUGGET_PARAM_WRITE32, buffer, nullptr);
106 bool CheckRegisterInRange(NuggetClientInterface& client, uint32_t address,
109 if (!ReadRegister(client, address, &value)) {
124 bool CheckRegisterNotInRange(NuggetClientInterface& client, uint32_t address,
127 if (!ReadRegister(client, address, &value)) {
139 bool CyclesSinceBoot(NuggetClientInterface & client, uint32_t* cycles) {
142 if (client.CallApp(APP_ID_NUGGET, NUGGET_PARAM_CYCLES_SINCE_BOOT
    [all...]
  /external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/internal/ws/
RealWebSocketTest.java 46 // NOTE: Fields are named 'client' and 'server' for cognitive simplicity. This differentiation has
51 private RealWebSocket client; field in class:RealWebSocketTest
67 client = new RealWebSocket(true, server2client.source(), client2Server.sink(), random,
98 client.sendMessage(null);
106 client.sendMessage(RequestBody.create(TEXT, "Hello!"));
112 client.sendMessage(RequestBody.create(BINARY, "Hello!"));
119 client.sendMessage(RequestBody.create(null, "Hey!"));
129 client.sendMessage(RequestBody.create(MediaType.parse("text/plain"), "Hey!"));
150 client.sendMessage(message);
163 client.sendPing(new Buffer().writeUtf8("Pong?"))
    [all...]
  /prebuilts/tools/common/google-api-java-client/1.20.0/
google-api-java-client-min-repackaged-1.20.0.jar 
  /external/autotest/site_utils/lxc/container_pool/
service_unittest.py 64 client = connection.Client(self.address)
65 client.close()
71 with self.run_service(), self.create_client() as client:
73 client.send_bytes(array.array('i', range(1, 10)))
76 client.recv()
83 with self.run_service(), self.create_client() as client:
85 client.send('foo')
88 client.recv()
95 with self.run_service(), self.create_client() as client
    [all...]
  /packages/apps/Nfc/tests/src/com/android/nfc/snep/
SnepValidationClientTests.java 53 SnepClient client = getSnepClient(); local
56 client.connect();
58 client.put(msg);
61 byte[] responseBytes = client.get(msg).getNdefMessage().toByteArray();
68 Log.d(TAG, "Closing client.");
69 client.close();
78 SnepClient client = getSnepClient(); local
81 client.connect();
83 client.put(msg);
86 byte[] responseBytes = client.get(msg).getNdefMessage().toByteArray()
102 SnepClient client = getSnepClient(); local
146 SnepClient client = getSnepClient(); local
164 SnepClient client = new SnepClient(SERVICE_NAME, 100, FRAGMENT_LENGTH); local
    [all...]
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 
  /external/libvncserver/libvncclient/
tls_openssl.c 176 rfbClient *client; local
188 client = SSL_CTX_get_app_data (ssl->ctx);
261 open_ssl_connection (rfbClient *client, int sockfd, rfbBool anonTLS)
276 SSL_CTX_set_app_data (ssl_ctx, client);
302 InitializeTLSSession(rfbClient* client, rfbBool anonTLS)
304 if (client->tlsSession) return TRUE;
306 client->tlsSession = open_ssl_connection (client, client->sock, anonTLS);
308 if (!client->tlsSession
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/oauth-client/google-oauth-client/1.22.0/
google-oauth-client-1.22.0.jar 
  /external/tensorflow/tensorflow/compiler/xla/tests/
compute_constant_test.cc 20 #include "tensorflow/compiler/xla/client/client_library.h"
21 #include "tensorflow/compiler/xla/client/computation.h"
22 #include "tensorflow/compiler/xla/client/computation_builder.h"
23 #include "tensorflow/compiler/xla/client/global_data.h"
39 // An enumerator for the client types that we want to iterate over in
54 Client* ClientOrDie(::perftools::gputools::Platform* platform,
57 StatusOr<Client*> result =
63 StatusOr<Client*> result =
73 Client* client, const ComputationDataHandle& operand
104 Client* client = ClientOrDie(platform_, client_type); local
117 Client* client = ClientOrDie(platform_, client_type); local
131 Client* client = ClientOrDie(platform_, client_type); local
146 Client* client = ClientOrDie(platform_, client_type); local
164 Client* client = ClientOrDie(platform_, client_type); local
178 Client* client = ClientOrDie(platform_, client_type); local
196 Client* client = ClientOrDie(platform_, client_type); local
222 Client* client = ClientOrDie(platform_, client_type); local
239 Client* client = ClientOrDie(platform_, client_type); local
253 Client* client = ClientOrDie(platform_, client_type); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_docxmlrpc.py 19 self.client.request("GET", "/")
20 self.client.getresponse()
85 self.client = httplib.HTTPConnection("localhost:%d" % PORT)
88 self.client.close()
97 self.client.request("GET", "/")
98 response = self.client.getresponse()
107 self.client.request("GET", "/spam")
108 response = self.client.getresponse()
122 self.client.request("GET", "/")
123 response = self.client.getresponse()
    [all...]
  /external/apache-http/src/org/apache/http/client/
HttpRequestRetryHandler.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/HttpRequestRetryHandler.java $
32 package org.apache.http.client;
HttpResponseException.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/HttpResponseException.java $
31 package org.apache.http.client;
NonRepeatableRequestException.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/NonRepeatableRequestException.java $
31 package org.apache.http.client;
ResponseHandler.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/ResponseHandler.java $
31 package org.apache.http.client;
UserTokenHandler.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/UserTokenHandler.java $
32 package org.apache.http.client;
  /external/apache-http/src/org/apache/http/client/params/
CookiePolicy.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/params/CookiePolicy.java $
32 package org.apache.http.client.params;
  /external/autotest/client/common_lib/feedback/
tester_feedback_client.py 5 """Feedback client implementation for interacting with a human tester."""
10 from autotest_lib.client.common_lib import error
11 from autotest_lib.client.common_lib.feedback import client
21 class Client(client.Client):
25 """Constructs the client object.
31 super(Client, self).__init__()
58 Initializes an XML-RPC proxy and registers the client at the remote end
    [all...]
  /external/autotest/client/cros/cellular/mbim_compliance/tests/
cm_03.py 14 from autotest_lib.client.cros.cellular.mbim_compliance import mbim_constants
15 from autotest_lib.client.cros.cellular.mbim_compliance import mbim_errors
16 from autotest_lib.client.cros.cellular.mbim_compliance.sequences \
18 from autotest_lib.client.cros.cellular.mbim_compliance.tests import test
cm_04.py 13 from autotest_lib.client.cros.cellular.mbim_compliance import mbim_errors
14 from autotest_lib.client.cros.cellular.mbim_compliance.sequences \
16 from autotest_lib.client.cros.cellular.mbim_compliance.sequences \
18 from autotest_lib.client.cros.cellular.mbim_compliance.tests import test
cm_09.py 14 from autotest_lib.client.cros.cellular.mbim_compliance import mbim_errors
15 from autotest_lib.client.cros.cellular.mbim_compliance.sequences \
17 from autotest_lib.client.cros.cellular.mbim_compliance.sequences \
19 from autotest_lib.client.cros.cellular.mbim_compliance.tests import test
dummy.py 6 from autotest_lib.client.cros.cellular.mbim_compliance.tests import test
  /external/autotest/client/cros/multimedia/
multimedia_xmlrpc_server.py 14 from autotest_lib.client.bin import utils
15 from autotest_lib.client.common_lib import logging_config
16 from autotest_lib.client.cros import constants
17 from autotest_lib.client.cros import upstart
18 from autotest_lib.client.cros import xmlrpc_server
19 from autotest_lib.client.cros.multimedia import audio_facade_native
20 from autotest_lib.client.cros.multimedia import browser_facade_native
21 from autotest_lib.client.cros.multimedia import cfm_facade_native
22 from autotest_lib.client.cros.multimedia import display_facade_native
23 from autotest_lib.client.cros.multimedia import facade_resourc
    [all...]

Completed in 924 milliseconds

<<11121314151617181920>>