HomeSort by relevance Sort by last modified time
    Searched refs:listen (Results 126 - 150 of 584) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/
tcp-server.js 43 listen: null, // Called when socket is connected.
84 TcpServer.prototype.listen = function(callback) {
119 * @see https://developer.chrome.com/apps/sockets_tcpServer#method-listen
127 socket.listen(this.serverSocketId, this.addr, this.port, 50,
144 error('Unable to listen to socket. Resultcode='+resultCode);
main.js 77 tcpServer.listen(onAcceptCallback);
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 46 * acceptor.listen();
71 * This constructor creates an acceptor without opening it to listen for new
107 * This constructor creates an acceptor and automatically opens it to listen
115 * will listen for new connections.
129 * acceptor.listen(listen_backlog);
148 this->get_service().listen(this->get_implementation(),
150 asio::detail::throw_error(ec, "listen");
403 /// Place the acceptor into the state where it will listen for new
413 void listen(int backlog = socket_base::max_connections) function in class:asio::basic_socket_acceptor
416 this->get_service().listen(this->get_implementation(), backlog, ec)
442 asio::error_code listen(int backlog, asio::error_code& ec) function in class:asio::basic_socket_acceptor
    [all...]
socket_acceptor_service.hpp 137 /// Place the socket acceptor into the state where it will listen for new
139 asio::error_code listen(implementation_type& impl, int backlog, function in class:asio::socket_acceptor_service
142 return service_impl_.listen(impl, backlog, ec);
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
VpnTest.java 360 ServerSocket listen = new ServerSocket(0, 10, InetAddress.getByName("::")); local
366 client.connect(new InetSocketAddress(toAddr, listen.getLocalPort()), SOCKET_TIMEOUT_MS);
368 closeQuietly(listen);
374 closeQuietly(listen);
388 listen.setSoTimeout(SOCKET_TIMEOUT_MS);
389 server = listen.accept();
417 closeQuietly(listen);
  /external/dnsmasq/src/
tftp.c 41 void tftp_request(struct listener *listen, time_t now)
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/fio/engines/
net.c 42 unsigned int listen; member in struct:netio_options
145 .name = "listen",
146 .lname = "net engine listen",
148 .off1 = offsetof(struct netio_options, listen),
149 .help = "Listen for incoming TCP connections",
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) {
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
TrackerService.java 147 mTelephonyManager.listen(mPhoneStateListener, PhoneStateListener.LISTEN_CELL_LOCATION);
161 mTelephonyManager.listen(mPhoneStateListener,
252 mTelephonyManager.listen(mPhoneStateListener, 0);
  /external/autotest/client/tests/kvm/deps/
finish.cpp 84 result = listen(ListenSocket, SOMAXCONN);
86 ExitOnError("Listen failed", TRUE);
  /external/deqp/execserver/
xsTcpServer.cpp 42 m_socket.listen(address);
  /external/mesa3d/src/gallium/auxiliary/util/
u_network.c 162 listen(s, 0);
  /external/nanopb-c/examples/network_server/
server.c 107 if (listen(listenfd, 5) != 0)
109 perror("listen");
  /external/parameter-framework/upstream/remote-processor/
RemoteProcessorServer.cpp 67 _acceptor.listen();
69 error = "Unable to listen on port " + std::to_string(_uiPort) + ": " + e.what();
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TelephonyManagerTest.java 37 manager.listen(listener, PhoneStateListener.LISTEN_CALL_STATE);
  /external/strace/linux/
subcall.h 38 [SYS_socket_subcall + 4] = { 2, IS|TN, SEN(listen), "listen" },
  /hardware/ril/libril/
RilSocket.cpp 34 ret = listen(listenFd, SOCKET_LISTEN_BACKLOG);
37 RLOGE("Failed to listen on %s socket '%d': %s",
41 //Add listen event to the event loop
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketImplFactoryTest.java 163 protected void listen(int arg0) throws IOException { method in class:OldSocketImplFactoryTest.MockSocketImpl
  /packages/apps/Test/connectivity/sl4n/
main.cpp 66 int listen_result = listen(listen_fd, kBacklogInt);
  /system/bt/hci/src/
btsnoop_net.c 112 LOG_ERROR(LOG_TAG, "%s unable to bind listen socket: %s", __func__, strerror(errno));
116 if (listen(listen_socket_, 10) == -1) {
117 LOG_ERROR(LOG_TAG, "%s unable to listen: %s", __func__, strerror(errno));
  /system/bt/vendor_libs/test_vendor_lib/src/
test_channel_transport.cc 62 if (listen(listen_fd, 1) < 0) {
  /external/e2fsprogs/lib/ss/
Makefile.in 50 execute_cmd.o listen.o parse.o error.o prompt.o \
55 $(srcdir)/execute_cmd.c $(srcdir)/listen.c $(srcdir)/parse.c \
204 listen.o: $(srcdir)/listen.c $(top_builddir)/lib/config.h \
  /external/v8/test/mjsunit/es6/debug-promises/
promise-all-uncaught.js 7 // Test debug events when we only listen to uncaught exceptions and a
promise-race-uncaught.js 7 // Test debug events when we only listen to uncaught exceptions and a
reject-caught-all.js 7 // Test debug events when we listen to all exceptions and
reject-caught-by-default-reject-handler.js 7 // Test debug events when we only listen to uncaught exceptions and

Completed in 495 milliseconds

1 2 3 4 56 7 8 91011>>