Searched refs:listen (Results 1 - 25 of 126) sorted by relevance

123456

/external/parameter-framework/remote-processor/
H A DListeningSocket.h40 bool listen(uint16_t uiPort, std::string &strError);
H A DListeningSocket.cpp56 bool CListeningSocket::listen(uint16_t uiPort, string &strError) function in class:CListeningSocket
72 if (::listen(getFd(), 5) == -1) {
76 strError = "Could not listen to port " + oss.str() + ": " + strerror(errno);
H A DRemoteProcessorServer.cpp70 if (!pListeningSocket->listen(_uiPort, error)) {
/external/parameter-framework/tools/xmlGenerator/
H A DportAllocator.py37 serversock.listen(0)
/external/lldb/test/functionalities/connect_remote/
H A DEchoServer.py15 s.listen(1)
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/
H A Dracoon.conf4 listen {
/external/ipsec-tools/src/racoon/samples/roadwarrior/server/
H A Dracoon.conf3 listen {
/external/mdnsresponder/mDNSShared/
H A Ddnsextd_lexer.l56 listen-on return LISTEN_ON;
H A Ddnsextd.conf19 // listen-on port 5030 { 127.0.0.1; };
49 // listen-on port 53 { 192.168.2.10; 127.0.0.1; };
/external/dnsmasq/src/
H A Dforward.c574 void receive_query(struct listener *listen, time_t now) argument
606 if (listen->family == AF_INET && (daemon->options & OPT_NOWILD))
608 dst_addr_4 = listen->iface->addr.in.sin_addr;
609 netmask = listen->iface->netmask;
628 if ((n = recvmsg(listen->fd, &msg, 0)) == -1)
636 source_addr.sa.sa_family = listen->family;
638 if (listen->family == AF_INET6)
650 if (listen->family == AF_INET)
658 if (listen->family == AF_INET)
673 if (listen
[all...]
H A Dtftp.c41 void tftp_request(struct listener *listen, time_t now) argument
83 if ((len = recvmsg(listen->tftpfd, &msg, 0)) < 2)
88 addr = listen->iface->addr.in;
89 mtu = listen->iface->mtu;
123 if (!indextoname(listen->tftpfd, if_index, name) ||
134 if (ioctl(listen->tftpfd, SIOCGIFMTU, &ifr) != -1)
/external/compiler-rt/test/tsan/
H A Dfd_socket_connect_norace.cc33 listen(s, 10);
H A Dfd_socket_norace.cc37 listen(s, 10);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTelephonyManager.java22 public void listen(PhoneStateListener listener, int events) { method in class:ShadowTelephonyManager
29 * passed to #listen().
39 * passed to #listen().
/external/strace/tests/
H A Dinet-accept-connect-send-recv.c34 assert(listen(0, 5) == 0);
H A Dnet-accept-connect.c39 assert(listen(0, 5) == 0);
H A Dnetlink_inet_diag.c86 listen(0, 5) ||
H A Dnetlink_unix_diag.c95 listen(0, 5))
/external/deqp/framework/delibs/decpp/
H A DdeSocket.cpp96 void Socket::listen (const SocketAddress& address) function in class:de::Socket
H A DdeSocket.hpp83 void listen (const SocketAddress& address);
/external/valgrind/none/tests/
H A Dfdleak_ipv4.c31 (void) DO( listen(s, 5) );
/external/fio/engines/
H A Dnet.c42 unsigned int listen; member in struct:netio_options
145 .name = "listen",
146 .lname = "net engine listen",
148 .off1 = offsetof(struct netio_options, listen),
235 rcv = o->listen || o->pingpong;
236 snd = !o->listen || o->pingpong;
339 if ((o->listen && io_u->ddir == DDIR_WRITE) ||
340 (!o->listen && io_u->ddir == DDIR_READ)) {
598 if (o->listen) {
981 if (o->listen)
[all...]
/external/deqp/execserver/
H A DxsTcpServer.cpp42 m_socket.listen(address);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_network.c162 listen(s, 0);
/external/nanopb-c/examples/network_server/
H A Dserver.c107 if (listen(listenfd, 5) != 0)
109 perror("listen");

Completed in 5926 milliseconds

123456