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

12 3

  /external/chromium_org/ppapi/tests/
test_udp_socket_private.cc 169 PP_NetAddress_Private server_address, client_address; local
174 &client_address));
182 client_address));
test_udp_socket.cc 190 pp::NetAddress server_address, client_address; local
195 &client_address));
201 ASSERT_TRUE(EqualNetAddress(recvfrom_address, client_address));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 174 if host != self.client_address[0]:
176 env['REMOTE_ADDR'] = self.client_address[0]
255 self.server.handle_error(self.request, self.client_address)
BaseHTTPServer.py 190 - client_address is the client IP address in the form (host,
456 (self.client_address[0],
497 host, port = self.client_address[:2]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 174 if host != self.client_address[0]:
176 env['REMOTE_ADDR'] = self.client_address[0]
255 self.server.handle_error(self.request, self.client_address)
BaseHTTPServer.py 190 - client_address is the client IP address in the form (host,
456 (self.client_address[0],
497 host, port = self.client_address[:2]
  /external/chromium_org/net/tools/quic/
quic_client.h 136 const IPEndPoint& client_address() const { return client_address_; } function in class:net::tools::QuicClient
quic_client.cc 345 IPEndPoint client_address(client_ip, client_address_.port());
347 client_address, server_address, packet);
quic_time_wait_list_manager_test.cc 197 net::test::TestPeerIPAddress() == packet.client_address.address() &&
198 kTestPort == packet.client_address.port();
  /external/chromium-trace/trace-viewer/examples/stream_server/
standalone.py 184 return self._request_handler.client_address
414 def handle_error(self, rquest, client_address):
419 client_address,
421 # Note: client_address is a tuple.
430 accepted_socket, client_address = self.socket.accept()
433 return accepted_socket, client_address
490 def __init__(self, request, client_address, server):
503 self, request, client_address, server)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
standalone.py 180 return self._request_handler.client_address
410 def handle_error(self, rquest, client_address):
415 client_address,
417 # Note: client_address is a tuple.
426 accepted_socket, client_address = self.socket.accept()
429 return accepted_socket, client_address
486 def __init__(self, request, client_address, server):
499 self, request, client_address, server)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
standalone.py 223 return self._request_handler.client_address
549 def handle_error(self, request, client_address):
554 client_address,
556 # Note: client_address is a tuple.
565 accepted_socket, client_address = self.socket.accept()
624 return accepted_socket, client_address
681 def __init__(self, request, client_address, server):
694 self, request, client_address, server)
    [all...]
  /external/chromium_org/v8/tools/testrunner/server/
status_handler.py 97 self.server.daemon.MarkPeerAsTrusting(self.client_address[0])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
run.py 226 def handle_error(self, request, client_address):
246 print>>erf, 'Client Address: ', client_address
rpc.py 93 def handle_error(self, request, client_address):
110 print>>erf, 'Client Address: ', client_address
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
run.py 226 def handle_error(self, request, client_address):
246 print>>erf, 'Client Address: ', client_address
  /external/chromium_org/sync/tools/testserver/
sync_testserver.py 57 request, client_address = self.get_request()
60 if self.verify_request(request, client_address):
62 self.process_request(request, client_address)
64 self.handle_error(request, client_address)
138 def __init__(self, request, client_address, sync_http_server):
167 testserver_base.BasePageHandler.__init__(self, request, client_address,
  /external/clang/tools/scan-view/
ScanView.py 169 def finish_request(self, request, client_address):
173 BaseHTTPServer.HTTPServer.finish_request(self, request, client_address)
175 def handle_error(self, request, client_address):
182 BaseHTTPServer.HTTPServer.handle_error(self, request, client_address)
643 self.client_address[0] != '127.0.0.1'):
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-view/
ScanView.py 169 def finish_request(self, request, client_address):
173 BaseHTTPServer.HTTPServer.finish_request(self, request, client_address)
175 def handle_error(self, request, client_address):
182 BaseHTTPServer.HTTPServer.handle_error(self, request, client_address)
643 self.client_address[0] != '127.0.0.1'):
  /prebuilts/misc/linux-x86/analyzer/tools/scan-view/
ScanView.py 169 def finish_request(self, request, client_address):
173 BaseHTTPServer.HTTPServer.finish_request(self, request, client_address)
175 def handle_error(self, request, client_address):
182 BaseHTTPServer.HTTPServer.handle_error(self, request, client_address)
643 self.client_address[0] != '127.0.0.1'):
  /external/chromium_org/net/quic/crypto/
quic_crypto_server_config.h 213 // client_address: the IP address and port of the client. The IP address is
230 IPEndPoint client_address,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imaplib.py 108 def handle_error(self, request, client_address):
test_urllib2_localnet.py 33 request, client_address = self.socket.accept()
40 return (request, client_address)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imaplib.py 108 def handle_error(self, request, client_address):
  /external/bluetooth/bluedroid/btif/src/
btif_sock_thread.c 158 struct sockaddr_un client_address; local
160 int fd = accept(s, (struct sockaddr*)&client_address, &clen);

Completed in 959 milliseconds

12 3