/external/python/cpython2/Lib/ |
D | SocketServer.py | 285 request, client_address = self.get_request() 288 if self.verify_request(request, client_address): 290 self.process_request(request, client_address) 292 self.handle_error(request, client_address) 304 def verify_request(self, request, client_address): argument 312 def process_request(self, request, client_address): argument 318 self.finish_request(request, client_address) 329 def finish_request(self, request, client_address): argument 331 self.RequestHandlerClass(request, client_address, self) 341 def handle_error(self, request, client_address): argument [all …]
|
D | CGIHTTPServer.py | 169 if host != self.client_address[0]: 171 env['REMOTE_ADDR'] = self.client_address[0] 250 self.server.handle_error(self.request, self.client_address)
|
D | BaseHTTPServer.py | 467 (self.client_address[0], 508 host, port = self.client_address[:2]
|
/external/python/cpython3/Lib/ |
D | socketserver.py | 312 request, client_address = self.get_request() 315 if self.verify_request(request, client_address): 317 self.process_request(request, client_address) 319 self.handle_error(request, client_address) 334 def verify_request(self, request, client_address): argument 342 def process_request(self, request, client_address): argument 348 self.finish_request(request, client_address) 359 def finish_request(self, request, client_address): argument 361 self.RequestHandlerClass(request, client_address, self) 371 def handle_error(self, request, client_address): argument [all …]
|
/external/v8/tools/testrunner/server/ |
D | presence_handler.py | 68 self.server.SendTo(self.client_address[0], response) 69 p = peer.Peer(self.client_address[0], jobs, relative_perf, 78 p = peer.Peer(self.client_address[0], jobs, perf, pubkey_fingerprint) 84 self.server.daemon.DeletePeer(self.client_address[0]) 85 if self.client_address[0] == self.server.daemon.ip:
|
D | status_handler.py | 97 self.server.daemon.MarkPeerAsTrusting(self.client_address[0])
|
/external/autotest/client/site_tests/platform_AddPrinter/ |
D | fake_printer.py | 29 (connection, client_address) = self.sock.accept() 31 logging.info('printing request from ' + str(client_address)) 36 logging.info('no more data from ' + str(client_address))
|
/external/python/cpython2/Lib/wsgiref/ |
D | simple_server.py | 86 if host != self.client_address[0]: 88 env['REMOTE_ADDR'] = self.client_address[0]
|
/external/python/cpython3/Lib/asyncio/ |
D | test_utils.py | 105 def handle_error(self, request, client_address): argument 111 def finish_request(self, request, client_address): argument 127 self.RequestHandlerClass(ssock, client_address, self) 195 def handle_error(self, request, client_address): argument
|
/external/python/cpython3/Lib/wsgiref/ |
D | simple_server.py | 89 if host != self.client_address[0]: 91 env['REMOTE_ADDR'] = self.client_address[0]
|
/external/clang/tools/scan-view/share/ |
D | ScanView.py | 169 def finish_request(self, request, client_address): argument 173 BaseHTTPServer.HTTPServer.finish_request(self, request, client_address) 175 def handle_error(self, request, client_address): argument 182 BaseHTTPServer.HTTPServer.handle_error(self, request, client_address) 643 self.client_address[0] != '127.0.0.1'):
|
/external/python/cpython3/Doc/library/ |
D | socketserver.rst | 305 .. method:: handle_error(request, client_address) 326 .. method:: process_request(request, client_address) 351 .. method:: verify_request(request, client_address) 387 address as :attr:`self.client_address`; and the server instance as 444 print("{} wrote:".format(self.client_address[0])) 467 print("{} wrote:".format(self.client_address[0])) 542 print("{} wrote:".format(self.client_address[0])) 544 socket.sendto(data.upper(), self.client_address)
|
D | http.server.rst | 40 .. class:: BaseHTTPRequestHandler(request, client_address, server) 57 .. attribute:: client_address 302 .. class:: SimpleHTTPRequestHandler(request, client_address, server) 397 .. class:: CGIHTTPRequestHandler(request, client_address, server)
|
/external/python/cpython2/Doc/library/ |
D | socketserver.rst | 300 .. method:: handle_error(request, client_address) 317 .. method:: process_request(request, client_address) 342 .. method:: verify_request(request, client_address) 373 address as :attr:`self.client_address`; and the server instance as 421 print "{} wrote:".format(self.client_address[0]) 445 print "{} wrote:".format(self.client_address[0]) 524 print "{} wrote:".format(self.client_address[0]) 526 socket.sendto(data.upper(), self.client_address)
|
D | cgihttpserver.rst | 33 .. class:: CGIHTTPRequestHandler(request, client_address, server)
|
D | basehttpserver.rst | 50 .. class:: BaseHTTPRequestHandler(request, client_address, server) 68 .. attribute:: client_address
|
/external/python/cpython2/Lib/idlelib/ |
D | run.py | 245 def handle_error(self, request, client_address): argument 265 print>>erf, 'Client Address: ', client_address
|
D | rpc.py | 93 def handle_error(self, request, client_address): argument 110 print>>erf, 'Client Address: ', client_address
|
/external/python/cpython3/Lib/test/ |
D | test_socketserver.py | 104 def handle_error(self, request, client_address): argument 343 def handle_error(self, request, client_address): argument 475 def verify_request(self, request, client_address): argument
|
/external/python/cpython2/Lib/test/ |
D | test_socketserver.py | 119 def handle_error(self, request, client_address): argument 336 def verify_request(self, request, client_address): argument
|
D | test_imaplib.py | 108 def handle_error(self, request, client_address): argument
|
/external/python/cpython3/Lib/idlelib/ |
D | run.py | 285 def handle_error(self, request, client_address): argument 305 print('Client Address: ', client_address, file=erf)
|
D | rpc.py | 94 def handle_error(self, request, client_address): argument 111 print('Client Address: ', client_address, file=erf)
|
/external/python/cpython3/Lib/http/ |
D | server.py | 601 return self.client_address[0] 1045 env['REMOTE_ADDR'] = self.client_address[0] 1128 self.server.handle_error(self.request, self.client_address)
|
/external/autotest/client/cros/ |
D | httpd.py | 88 str(self.client_address))
|