/external/grpc-grpc-java/services/src/test/java/io/grpc/services/ |
BinlogHelperTest.java | 582 .setLogger(GrpcLogEntry.Logger.CLIENT) 598 .setLogger(GrpcLogEntry.Logger.CLIENT) 663 .setLogger(GrpcLogEntry.Logger.CLIENT) 709 .setLogger(GrpcLogEntry.Logger.CLIENT) 727 .setLogger(GrpcLogEntry.Logger.CLIENT) 768 .setLogger(GrpcLogEntry.Logger.CLIENT) 778 .setLogger(GrpcLogEntry.Logger.CLIENT) 816 .setLogger(GrpcLogEntry.Logger.CLIENT) 826 .setLogger(GrpcLogEntry.Logger.CLIENT) [all...] |
/external/autotest/frontend/afe/ |
rpc_utils_unittest.py | 13 from autotest_lib.client.common_lib import control_data 45 control_data.CONTROL_TYPE.CLIENT)) 46 self.assertFalse(rpc_utils._check_is_server_test('Client'))
|
rpc_interface_unittest.py | 9 from autotest_lib.client.common_lib import control_data 10 from autotest_lib.client.common_lib import error 11 from autotest_lib.client.common_lib import global_config 12 from autotest_lib.client.common_lib import priorities 13 from autotest_lib.client.common_lib.cros import dev_server 14 from autotest_lib.client.common_lib.test_utils import mock 30 CLIENT = control_data.CONTROL_TYPE_NAMES.CLIENT 93 control_type=CLIENT, 178 """Create jobs, retrieve them, fail on client, fetch them again."" [all...] |
/external/autotest/venv/lucifer/ |
jobx.py | 67 """Return whether the job is a client job. 69 If the job is not a client job, it is a server job. 76 CONTROL_TYPE = autotest.load('client.common_lib.control_data').CONTROL_TYPE 77 return CONTROL_TYPE.get_value(job.control_type) == CONTROL_TYPE.CLIENT 96 global_config = autotest.load('client.common_lib.global_config')
|
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/ |
tirpc_bottomlevel_clnt_call_scalability.c | 53 CLIENT *client = NULL; local 94 client = clnt_dg_create(RPC_ANYFD, &svcaddr, 97 if (client == NULL) { 104 clnt_call(client, PROCNUM, 109 clnt_destroy(client);
|
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_expertlevel_clnt_call/ |
tirpc_expertlevel_clnt_call_scalability.c | 53 CLIENT *client = NULL; local 90 client = clnt_tli_create(RPC_ANYFD, nconf, &svcaddr, 93 if (client == NULL) { 99 clnt_call(client, PROCNUM, 104 clnt_destroy(client);
|
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_interlevel_clnt_call/ |
tirpc_interlevel_clnt_call_scalability.c | 52 CLIENT *client = NULL; local 56 //First, test initialization : create client using intermediate level API 68 client = clnt_tp_create_timed(hostname, progNum, 71 if (client == NULL) { 81 clnt_call(client, PROCNUM, (xdrproc_t) xdr_int, (char *)&sndVar, // xdr_in 86 clnt_destroy(client);
|
/external/opencensus-java/exporters/trace/instana/src/test/java/io/opencensus/exporter/trace/instana/ |
InstanaExporterHandlerTest.java | 152 Kind.CLIENT, /* kind */
|
/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securegcm/ |
Ukey2Handshake.java | 48 * <p>Client Usage: 51 * Ukey2Handshake client = Ukey2Handshake.forInitiator(HandshakeCipher.P256_SHA512); 54 * // Message 1 (Client Init) 55 * handshakeMessage = client.getNextHandshakeMessage(); 60 * client.parseHandshakeMessage(handshakeMessage); 62 * // Message 3 (Client Finish) 63 * handshakeMessage = client.getNextHandshakeMessage(); 67 * byte[] clientAuthString = client.getVerificationString(STRING_LENGTH); 71 * client.verifyHandshake(); 74 * D2DConnectionContext clientContext = client.toConnectionContext() [all...] |
/external/python/cpython2/Modules/ |
nismodule.c | 331 nisproc_maplist_2(domainname *argp, CLIENT *clnt) 351 CLIENT *cl;
|
/external/python/cpython3/Modules/ |
nismodule.c | 338 nisproc_maplist_2(domainname *argp, CLIENT *clnt) 358 CLIENT *cl;
|
/external/autotest/cli/ |
host_unittest.py | 16 from autotest_lib.client.common_lib import control_data 18 CLIENT = control_data.CONTROL_TYPE_NAMES.CLIENT [all...] |
job.py | 23 from autotest_lib.client.common_lib import control_data 24 from autotest_lib.client.common_lib import priorities 459 'client/server setting is implicit and ' 488 self.data['control_type'] = control_data.CONTROL_TYPE_NAMES.CLIENT 507 self.data['control_type'] = control_data.CONTROL_TYPE_NAMES.CLIENT
|
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/trace/ |
SpanBuilderImplTest.java | 90 .setSpanKind(Kind.CLIENT) 93 assertThat(span.getKind()).isEqualTo(Kind.CLIENT); 94 assertThat(span.toSpanData().getKind()).isEqualTo(Kind.CLIENT);
|
/external/ltp/testcases/network/rpc/basic_tests/rpc01/ |
rpc1.c | 32 CLIENT *clnt;
|
/external/opencensus-java/exporters/trace/instana/src/main/java/io/opencensus/exporter/trace/instana/ |
InstanaExporterHandler.java | 97 if (spanData.getKind() == Kind.CLIENT
|
/external/opencensus-java/exporters/trace/ocagent/src/main/java/io/opencensus/exporter/trace/ocagent/ |
TraceProtoUtils.java | 176 case CLIENT: 177 return SpanKind.CLIENT;
|
/external/opencensus-java/exporters/trace/ocagent/src/test/java/io/opencensus/exporter/trace/ocagent/ |
TraceProtoUtilsTest.java | 153 Kind.CLIENT, 250 assertThat(span.getKind()).isEqualTo(SpanKind.CLIENT);
|
/external/opencensus-java/exporters/trace/stackdriver/src/test/java/io/opencensus/exporter/trace/stackdriver/ |
StackdriverV2ExporterHandlerProtoTest.java | 456 Kind.CLIENT, 477 Kind.CLIENT,
|
/external/tensorflow/tensorflow/python/distribute/ |
distribute_coordinator.py | 28 from tensorflow.python.client import session 45 CLIENT = "client" 48 # TODO(yuefengz): support another mode where the client colocates with one 53 # client and connects to remote servers for training. Each remote server can 453 """Runs a standalone client for between-graph replication.""" 496 """Runs a standalone client for in-graph replication.""" 533 the session config to a client session. 539 # The strategy may be shared in standalone client mode. 548 # strategies. The device filters can be set in the client side as well [all...] |
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/java/security/ |
TestKeyStore.java | 141 private static TestKeyStore CLIENT; 249 CLIENT = new TestKeyStore(createClient(INTERMEDIATE_CA.keyStore), null, null); 251 .aliasPrefix("client-ec") 258 .aliasPrefix("client-ec") 265 .aliasPrefix("client") 332 return CLIENT; 336 * Return a client keystore with a matched RSA certificate and 345 * Return a client keystore with a matched RSA certificate and 354 * Return a client keystore with a matched RSA certificate and [all...] |
/external/conscrypt/testing/src/main/java/org/conscrypt/java/security/ |
TestKeyStore.java | 139 private static TestKeyStore CLIENT; 247 CLIENT = new TestKeyStore(createClient(INTERMEDIATE_CA.keyStore), null, null); 249 .aliasPrefix("client-ec") 256 .aliasPrefix("client-ec") 263 .aliasPrefix("client") 330 return CLIENT; 334 * Return a client keystore with a matched RSA certificate and 343 * Return a client keystore with a matched RSA certificate and 352 * Return a client keystore with a matched RSA certificate and [all...] |
/external/wayland/src/ |
scanner.c | 56 CLIENT, 63 fprintf(stderr, "usage: %s [OPTION] [client-header|server-header|code]" 67 "stdin or input file to client\n" 74 " that is e.g. wayland-client-core.h instead\n" 75 " of wayland-client.h.\n"); 1207 " * Sends an %s event to the client owning the resource.\n", 1210 printf(" * @param resource_ The client's resource\n"); 1331 printf("struct wl_client *client,\n" 1347 else if (side == CLIENT && a->type == OBJECT && a->interface_name == NULL) 1350 else if (side == CLIENT && a->type == NEW_ID [all...] |
/external/grpc-grpc/test/core/end2end/fuzzers/ |
api_fuzzer.cc | 394 // client connection 412 grpc_endpoint* client; local 414 grpc_passthru_endpoint_create(&client, &server, g_resource_quota, nullptr); 415 *fc->ep = client; 511 typedef enum { ROOT, CLIENT, SERVER, PENDING_SERVER } call_state_type; 913 if (g_active_call->call == nullptr || g_active_call->type == CLIENT) { 931 call_state* cs = new_call(g_active_call, CLIENT); [all...] |
/frameworks/av/services/camera/libcameraservice/ |
CameraService.h | 71 class Client; 186 // Client functionality 241 // Return the package name for this client 244 // Notify client about a fatal error 248 // Get the UID of the application client using this 251 // Get the PID of the application client using this 254 // Check what API level is used for this client. This is used to determine which 258 // Block the client form using the camera 300 explicit OpsCallback(wp<BasicClient> client); 317 class Client : public hardware::BnCamera, public BasicClien [all...] |