Home
last modified time | relevance | path

Searched refs:host_and_port (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/lldb/include/lldb/Host/
DSocket.h70 TcpListen(llvm::StringRef host_and_port, bool child_processes_inherit,
74 TcpConnect(llvm::StringRef host_and_port, bool child_processes_inherit);
77 UdpConnect(llvm::StringRef host_and_port, bool child_processes_inherit);
79 static Status UnixDomainConnect(llvm::StringRef host_and_port,
82 static Status UnixDomainAccept(llvm::StringRef host_and_port,
84 static Status UnixAbstractConnect(llvm::StringRef host_and_port,
87 static Status UnixAbstractAccept(llvm::StringRef host_and_port,
106 static bool DecodeHostAndPort(llvm::StringRef host_and_port,
/external/llvm-project/lldb/source/Host/common/
DSocket.cpp151 Socket::TcpConnect(llvm::StringRef host_and_port, in TcpConnect() argument
154 LLDB_LOG(log, "host_and_port = {0}", host_and_port); in TcpConnect()
162 error = connect_socket->Connect(host_and_port); in TcpConnect()
170 Socket::TcpListen(llvm::StringRef host_and_port, bool child_processes_inherit, in TcpListen() argument
173 LLDB_LOG(log, "host_and_port = {0}", host_and_port); in TcpListen()
179 if (!DecodeHostAndPort(host_and_port, host_str, port_str, port, &error)) in TcpListen()
185 error = listen_socket->Listen(host_and_port, backlog); in TcpListen()
206 Socket::UdpConnect(llvm::StringRef host_and_port, in UdpConnect() argument
208 return UDPSocket::Connect(host_and_port, child_processes_inherit); in UdpConnect()
275 bool Socket::DecodeHostAndPort(llvm::StringRef host_and_port, in DecodeHostAndPort() argument
[all …]
/external/grpc-grpc/tools/run_tests/
Drun_performance_tests.py48 def __init__(self, spec, language, host_and_port, perf_file_base_name=None): argument
51 self.host_and_port = host_and_port
77 host_and_port = '%s:%s' % (remote_host, port)
79 host_and_port = 'localhost:%s' % port
83 perf_file_base_name = '%s-%s' % (host_and_port, shortname)
106 return QpsWorkerJob(jobspec, language, host_and_port, perf_file_base_name)
144 w.host_and_port for w in workers)
420 scenario_json, [w.host_and_port for w in workers],
437 print('QPS worker "%s" is still running.' % job.host_and_port)
462 for host_and_port in hosts_and_base_names:
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/
Drun_performance_tests.py53 def __init__(self, spec, language, host_and_port, perf_file_base_name=None): argument
56 self.host_and_port = host_and_port
84 host_and_port = '%s:%s' % (remote_host, port)
86 host_and_port = 'localhost:%s' % port
90 perf_file_base_name = '%s-%s' % (host_and_port, shortname)
112 return QpsWorkerJob(jobspec, language, host_and_port, perf_file_base_name)
147 w.host_and_port for w in workers)
428 scenario_json, [w.host_and_port for w in workers],
445 print('QPS worker "%s" is still running.' % job.host_and_port)
470 for host_and_port in hosts_and_base_names:
[all …]
/external/libbrillo/brillo/http/
Dhttp_proxy.cc76 std::string host_and_port = std::string(space, token.end()); in ParseProxyInfo() local
77 base::TrimWhitespaceASCII(host_and_port, base::TRIM_ALL, &host_and_port); in ParseProxyInfo()
78 if (scheme != "direct" && host_and_port.empty()) { in ParseProxyInfo()
82 proxies_out->push_back(scheme + "://" + host_and_port); in ParseProxyInfo()
/external/llvm-project/lldb/tools/lldb-server/
Dlldb-gdbserver.cpp194 bool reverse_connect, llvm::StringRef host_and_port, in ConnectToRemote() argument
223 } else if (!host_and_port.empty()) { in ConnectToRemote()
232 if (host_and_port[0] == ':') in ConnectToRemote()
234 final_host_and_port.append(host_and_port.str()); in ConnectToRemote()
489 llvm::StringRef host_and_port; in main_gdbserver() local
491 host_and_port = Inputs.front(); in main_gdbserver()
510 ConnectToRemote(mainloop, gdb_server, reverse_connect, host_and_port, in main_gdbserver()
/external/llvm-project/lldb/include/lldb/Host/posix/
DConnectionFileDescriptorPosix.h81 lldb::ConnectionStatus SocketListenAndAccept(llvm::StringRef host_and_port,
84 lldb::ConnectionStatus ConnectTCP(llvm::StringRef host_and_port,
/external/grpc-grpc/src/core/lib/security/transport/
Dclient_auth_filter.cc145 char* host_and_port = grpc_slice_to_c_string(call_host); in grpc_auth_metadata_context_build() local
148 char* port_delimiter = strrchr(host_and_port, ':'); in grpc_auth_metadata_context_build()
154 url_scheme == nullptr ? "" : url_scheme, host_and_port, service); in grpc_auth_metadata_context_build()
160 gpr_free(host_and_port); in grpc_auth_metadata_context_build()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/transport/
Dclient_auth_filter.cc207 char* host_and_port = grpc_slice_to_c_string(call_host); in grpc_auth_metadata_context_build() local
210 char* port_delimiter = strrchr(host_and_port, ':'); in grpc_auth_metadata_context_build()
216 url_scheme == nullptr ? "" : url_scheme, host_and_port, service); in grpc_auth_metadata_context_build()
225 gpr_free(host_and_port); in grpc_auth_metadata_context_build()
/external/perfetto/src/base/
Dunix_socket_unittest.cc424 char host_and_port[32]; in TEST_F() local
431 sprintf(host_and_port, "127.0.0.1:%d", 10000 + (rand() % 10000)); in TEST_F()
432 srv = UnixSocket::Listen(host_and_port, &event_listener_, &task_runner_, in TEST_F()
452 cli[i] = UnixSocket::Connect(host_and_port, &event_listener_, &task_runner_, in TEST_F()