HomeSort by relevance Sort by last modified time
    Searched refs:Listen (Results 26 - 50 of 55) sorted by null

12 3

  /external/webkit/LayoutTests/http/conf/
apache2-msys-httpd.conf 156 # Listen: Allows you to bind Apache to specific IP addresses and/or
163 #Listen 3000
164 Listen 127.0.0.1:8080
165 Listen 127.0.0.1:8443
166 # We listen to both IPv4 and IPv6 loop-back addresses, but ignore
169 #Listen [::1]:8000
170 #Listen [::1]:8080
171 #Listen [::1]:8443
httpd.conf 174 # Listen: Allows you to bind Apache to specific IP addresses and/or
181 #Listen 3000
182 Listen 127.0.0.1:8080
183 Listen 127.0.0.1:8443
184 # Apache 1.3 only supports IPv4, so we do not listen on ::1 (IPv6 loopback).
cygwin-httpd.conf 174 # Listen: Allows you to bind Apache to specific IP addresses and/or
180 #Listen 3000
181 Listen 127.0.0.1:8080
182 # Apache 1.3 only supports IPv4, so we do not listen on ::1 (IPv6 loopback).
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 45 // Listen for a click on the camera icon. On that click, take a screenshot.
  /external/chromium/third_party/libjingle/source/talk/base/
firewallsocketserver.cc 91 virtual int Listen(int backlog) {
93 LOG(LS_VERBOSE) << "FirewallSocket listen attempt denied";
97 return AsyncSocketAdapter::Listen(backlog);
socket.h 163 virtual int Listen(int backlog) = 0;
asynctcpsocket.cc 51 AsyncTCPSocket* AsyncTCPSocket::Create(SocketFactory* factory, bool listen) {
53 // This will still return a socket even if we failed to listen on
58 // TODO: It might be better to pass listen() error to the
60 return (sock) ? new AsyncTCPSocket(sock, listen) : NULL;
63 AsyncTCPSocket::AsyncTCPSocket(AsyncSocket* socket, bool listen)
65 listen_(listen),
80 if (socket_->Listen(LISTEN_BACKLOG) < 0) {
81 LOG(LS_ERROR) << "Listen() failed with error " << socket_->GetError();
win32socketserver.cc 454 int Win32Socket::Listen(int backlog) {
455 int err = ::listen(socket_, backlog);
  /external/quake/quake/src/WinQuake/
net.h 162 void (*Listen) (qboolean state);
189 void (*Listen) (qboolean state);
net_main.cpp 179 Con_Printf ("\"listen\" is \"%u\"\n", listening ? 1 : 0);
189 dfunc.Listen (listening);
220 Cbuf_AddText ("listen 0\n");
223 Cbuf_AddText ("listen 1\n");
256 Cbuf_AddText ("listen 0\n");
257 Cbuf_AddText ("listen 1\n");
834 if (COM_CheckParm("-listen") || cls.state == ca_dedicated)
868 Cmd_AddCommand ("listen", NET_Listen_f);
881 net_drivers[net_driverlevel].Listen (true);
  /external/chromium/net/socket/
tcp_server_socket_libevent.cc 56 int TCPServerSocketLibevent::Listen(const IPEndPoint& address, int backlog) {
87 result = listen(socket_, backlog);
89 PLOG(ERROR) << "listen() returned an error";
tcp_server_socket_unittest.cc 32 ASSERT_EQ(OK, socket_.Listen(address, kListenBacklog));
tcp_server_socket_win.cc 37 int TCPServerSocketWin::Listen(const IPEndPoint& address, int backlog) {
75 result = listen(socket_, backlog);
77 PLOG(ERROR) << "listen() returned an error";
transport_client_socket_unittest.cc 101 // Find a free port to listen on
104 // Range of ports to listen on. Shouldn't need to try many.
111 sock = ListenSocket::Listen("127.0.0.1", port, this);
  /external/ppp/pppd/plugins/radius/etc/
dictionary 152 VALUE Framed-Routing Listen 2
153 VALUE Framed-Routing Broadcast-Listen 3
  /external/v8/test/cctest/
test-sockets.cc 40 Semaphore* listening_; // Signalled when the server socket is in listen mode.
54 // Listen for new connections.
55 ok = server_->Listen(1);
  /external/v8/src/
platform-posix.cc 270 bool Listen(int backlog) const;
309 bool POSIXSocket::Listen(int backlog) const {
314 int status = listen(socket_, backlog);
debug-agent.cc 71 bool ok = server_->Listen(1);
90 // Signal termination and make the server exit either its listen call or its
platform.h 539 virtual bool Listen(int backlog) const = 0;
platform-win32.cc     [all...]
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 24 # dynamic-dnsmasq.pl listen &
51 die "Usage: $0 ADD|DEL|LISTUSERS|WRITEHOSTSFILE|LISTEN\n";
89 } elsif ( lc $ARGV[0] eq "listen" ) {
94 my $sock = IO::Socket::INET->new(Listen => 5,
  /external/chromium/net/server/
http_server.cc 30 server_ = ListenSocket::Listen(host, port, this);
  /external/chromium/chrome/browser/resources/ntp/
drag_drop_controller.js 96 // Listen to mousedown to get the relative position of the cursor when
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 380 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)
  /build/tools/droiddoc/templates-sdk/assets/
android-developer-reference.js 401 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)

Completed in 915 milliseconds

12 3