Searched defs:listen_port (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/net/tools/flip_server/
H A Dflip_config.cc13 std::string listen_port,
29 listen_port_(listen_port),
105 std::string listen_port,
122 listen_port,
11 FlipAcceptor(enum FlipHandlerType flip_handler_type, std::string listen_ip, std::string listen_port, std::string ssl_cert_filename, std::string ssl_key_filename, std::string http_server_ip, std::string http_server_port, std::string https_server_ip, std::string https_server_port, int spdy_only, int accept_backlog_size, bool disable_nagle, int accepts_per_wake, bool reuseport, bool wait_for_iface, void* memory_cache) argument
103 AddAcceptor(enum FlipHandlerType flip_handler_type, std::string listen_ip, std::string listen_port, std::string ssl_cert_filename, std::string ssl_key_filename, std::string http_server_ip, std::string http_server_port, std::string https_server_ip, std::string https_server_port, int spdy_only, int accept_backlog_size, bool disable_nagle, int accepts_per_wake, bool reuseport, bool wait_for_iface, void* memory_cache) argument
/external/lldb/source/Core/
H A DConnectionFileDescriptor.cpp191 unsigned long listen_port = ::strtoul(s + strlen("listen://"), &end, 0); local
192 return SocketListen (listen_port, error_ptr);
1208 int listen_port = ::socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
1209 if (listen_port == -1)
1217 SetSocketOption (listen_port, SOL_SOCKET, SO_REUSEADDR, 1);
1222 int err = ::bind (listen_port, localhost, localhost.GetLength());
1227 Close (listen_port, NULL);
1231 err = ::listen (listen_port, 1);
1236 Close (listen_port, NULL);
1240 m_fd_send = m_fd_recv = ::accept (listen_port, NUL
[all...]
/external/netperf/
H A Dnetserver.c153 char listen_port[10]; variable
829 strncpy(listen_port,TEST_PORT,sizeof(listen_port));
875 strncpy(listen_port,optarg,sizeof(listen_port));
972 set_up_server(local_host_name,listen_port,local_address_family);
987 strncpy(listen_port,TEST_PORT,sizeof(listen_port));
988 set_up_server(local_host_name,listen_port,local_address_family);
996 strncpy(listen_port,TEST_POR
[all...]
/external/lldb/tools/debugserver/source/
H A Ddebugserver.cpp688 StartListening (RNBRemote *remote, const char *listen_host, int listen_port, const char *unix_socket_name) argument
692 if (listen_port != 0)
693 RNBLogSTDOUT ("Listening to port %i for a connection from %s...\n", listen_port, listen_host ? listen_host : "localhost");
694 if (remote->Comm().Listen(listen_host, listen_port, PortWasBoundCallback, unix_socket_name) != rnb_success)
1154 int listen_port = INT32_MAX; local
1167 int items_scanned = ::sscanf (argv[0], "%[^:]:%i", str, &listen_port);
1171 DNBLogDebug("host = '%s' port = %i", listen_host.c_str(), listen_port);
1176 int items_scanned = ::sscanf (argv[0], "%i", &listen_port);
1180 DNBLogDebug("host = '%s' port = %i", listen_host.c_str(), listen_port);
1184 listen_port
[all...]

Completed in 1704 milliseconds