HomeSort by relevance Sort by last modified time
    Searched refs:client_address (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium_org/third_party/tlslite/tlslite/integration/
TLSSocketServerMixIn.py 50 def finish_request(self, sock, client_address):
53 self.RequestHandlerClass(tlsConnection, client_address, self)
  /external/chromium_org/net/tools/quic/test_tools/
mock_quic_dispatcher.h 29 const IPEndPoint& client_address,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SocketServer.py 176 - get_request() -> request, client_address
178 - verify_request(request, client_address)
180 - process_request(request, client_address)
187 - finish_request(request, client_address)
290 request, client_address = self.get_request()
293 if self.verify_request(request, client_address):
295 self.process_request(request, client_address)
297 self.handle_error(request, client_address)
307 def verify_request(self, request, client_address):
315 def process_request(self, request, client_address)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SocketServer.py 176 - get_request() -> request, client_address
178 - verify_request(request, client_address)
180 - process_request(request, client_address)
187 - finish_request(request, client_address)
290 request, client_address = self.get_request()
293 if self.verify_request(request, client_address):
295 self.process_request(request, client_address)
297 self.handle_error(request, client_address)
307 def verify_request(self, request, client_address):
315 def process_request(self, request, client_address)
    [all...]
  /external/chromium_org/net/tools/quic/
quic_dispatcher.cc 78 const IPEndPoint& client_address,
87 client_address,
92 session = CreateQuicSession(guid, client_address, fd_, epoll_server_);
100 client_address,
112 server_address, client_address, packet);
188 const IPEndPoint& client_address,
194 config_, new QuicConnection(guid, client_address, helper, true,
quic_time_wait_list_manager.cc 67 // client_address - address of the client that sent that packet. Needed to send
74 const IPEndPoint& client_address,
77 client_address_(client_address),
82 const IPEndPoint& client_address() const { return client_address_; } function in class:net::tools::QuicTimeWaitListManager::QueuedPacket
131 const IPEndPoint& client_address,
136 client_address_ = client_address;
229 const IPEndPoint& client_address,
241 client_address,
270 queued_packet->client_address(),
279 << queued_packet->client_address().ToString() << ":
    [all...]
quic_server.cc 186 const IPEndPoint& client_address) {
192 dispatcher->ProcessPacket(server_address, client_address, guid, packet);
203 IPEndPoint client_address; local
208 &server_ip, &client_address);
217 MaybeDispatchPacket(dispatcher, packet, server_address, client_address);
quic_server.h 68 const IPEndPoint& client_address);
quic_dispatcher.h 69 const IPEndPoint& client_address,
92 const IPEndPoint& client_address,
quic_time_wait_list_manager.h 61 const IPEndPoint& client_address,
124 const IPEndPoint& client_address,
quic_client.h 119 const IPEndPoint& client_address() const { return client_address_; } function in class:net::tools::QuicClient
  /external/chromium_org/v8/tools/testrunner/server/
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:
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
bootparam_prot.x 72 bp_address client_address;
bootparam_prot.h 48 bp_address client_address; member in struct:bp_whoami_arg
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
bootparam_prot.x 72 bp_address client_address;
bootparam_prot.h 48 bp_address client_address; member in struct:bp_whoami_arg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
bootparam_prot.x 72 bp_address client_address;
bootparam_prot.h 48 bp_address client_address; member in struct:bp_whoami_arg
  /external/chromium_org/net/tools/testserver/
testserver_base.py 62 def verify_request(self, _request, client_address):
63 return client_address[0] == self.server_address[0]
72 def handle_error(self, request, client_address):
84 SocketServer.BaseServer.handle_error(self, request, client_address)
114 def __init__(self, request, client_address, socket_server,
123 self, request, client_address, socket_server)
  /external/chromium_org/net/udp/
udp_socket_unittest.cc 310 IPEndPoint client_address; local
311 EXPECT_EQ(OK, socket->GetLocalAddress(&client_address));
312 used_ports.push_back(client_address.port());
332 IPEndPoint client_address; local
333 EXPECT_EQ(OK, test_socket->GetLocalAddress(&client_address));
334 EXPECT_EQ(used_ports.back(), client_address.port());
409 IPEndPoint client_address; local
410 rv = client.GetLocalAddress(&client_address);
415 client_address);
420 client_address);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
simple_server.py 86 if host != self.client_address[0]:
88 env['REMOTE_ADDR'] = self.client_address[0]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
simple_server.py 86 if host != self.client_address[0]:
88 env['REMOTE_ADDR'] = self.client_address[0]
  /external/chromium/net/udp/
udp_socket_unittest.cc 203 IPEndPoint client_address; local
204 rv = client.GetLocalAddress(&client_address);
209 client_address);
214 client_address);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
reflectionhandler_unittest.py 67 self.client_address = '127.0.0.1'
  /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):
158 testserver_base.BasePageHandler.__init__(self, request, client_address,

Completed in 465 milliseconds

1 2 3