Home
last modified time | relevance | path

Searched refs:port_arg (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc/test/cpp/interop/
Dinterop_test.cc51 char* port_arg; in test_client() local
53 gpr_asprintf(&port_arg, "--server_port=%d", port); in test_client()
55 execl(binary_path, binary_path, port_arg, NULL); in test_client()
58 gpr_free(port_arg); in test_client()
/external/autotest/server/site_tests/tast/
Dtast.py263 port_arg = merged_args.get(servo_constants.SERVO_PORT_ATTR)
264 if not host_arg or not port_arg:
266 return ['-var=servo=%s:%s' % (host_arg, port_arg)]
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/
Drun_xds_tests.py89 def parse_port_range(port_arg): argument
91 port = int(port_arg)
94 port_min, port_max = port_arg.split(':')