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

1 2 3

  /external/chromium_org/third_party/tlslite/tlslite/integration/
tlssocketservermixin.py 53 def finish_request(self, sock, client_address):
56 self.RequestHandlerClass(tlsConnection, client_address, self)
  /external/chromium_org/net/quic/test_tools/
mock_quic_dispatcher.h 27 const IPEndPoint& client_address,
  /external/chromium_org/net/tools/quic/test_tools/
mock_quic_dispatcher.h 29 const IPEndPoint& client_address,
  /external/chromium_org/net/tools/quic/
quic_dispatcher_test.cc 57 const IPEndPoint& client_address));
85 const IPEndPoint& client_address,
94 ProcessUdpPacket(_, client_address, _));
120 void ProcessPacket(IPEndPoint client_address,
127 dispatcher_.ProcessPacket(server_address_, client_address, *packet);
146 IPEndPoint client_address(net::test::Loopback4(), 1);
151 EXPECT_CALL(dispatcher_, CreateQuicSession(1, _, client_address))
153 &dispatcher_, 1, client_address, &session1_)));
154 ProcessPacket(client_address, 1, true, "foo");
155 EXPECT_EQ(client_address, dispatcher_.current_client_address())
234 dispatcher_.ProcessPacket(IPEndPoint(), client_address, *encrypted); local
    [all...]
quic_time_wait_list_manager.cc 61 // client_address - address of the client that sent that packet. Needed to send
68 const IPEndPoint& client_address,
71 client_address_(client_address),
76 const IPEndPoint& client_address() const { return client_address_; } function in class:net::tools::QuicTimeWaitListManager::QueuedPacket
153 const IPEndPoint& client_address,
171 client_address,
177 client_address,
192 const IPEndPoint& client_address,
202 packet.client_address = client_address;
    [all...]
quic_time_wait_list_manager.h 78 const IPEndPoint& client_address,
112 const IPEndPoint& client_address,
quic_dispatcher.h 73 const IPEndPoint& client_address,
109 const IPEndPoint& client_address);
114 const IPEndPoint& client_address);
quic_dispatcher.cc 215 const IPEndPoint& client_address,
218 current_client_address_ = client_address;
379 const IPEndPoint& client_address) {
382 CreateQuicConnection(connection_id, server_address, client_address),
391 const IPEndPoint& client_address) {
395 return new QuicConnection(connection_id, client_address, helper_.get(),
403 return new QuicConnection(connection_id, client_address, helper_.get(),
410 return new QuicConnection(connection_id, client_address, helper_.get(),
quic_server.cc 224 IPEndPoint client_address; local
229 &server_ip, &client_address);
238 dispatcher->ProcessPacket(server_address, client_address, packet);
  /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/quic/
quic_time_wait_list_manager.cc 58 // client_address - address of the client that sent that packet. Needed to send
65 const IPEndPoint& client_address,
68 client_address_(client_address),
72 const IPEndPoint& client_address() const { return client_address_; } function in class:net::QuicTimeWaitListManager::QueuedPacket
151 const IPEndPoint& client_address,
169 client_address,
175 client_address,
190 const IPEndPoint& client_address,
200 packet.client_address = client_address;
    [all...]
quic_time_wait_list_manager.h 74 const IPEndPoint& client_address,
108 const IPEndPoint& client_address,
quic_dispatcher.h 70 const IPEndPoint& client_address,
102 const IPEndPoint& client_address);
107 const IPEndPoint& client_address);
quic_dispatcher.cc 211 const IPEndPoint& client_address,
214 current_client_address_ = client_address;
368 const IPEndPoint& client_address) {
371 CreateQuicConnection(connection_id, server_address, client_address),
380 const IPEndPoint& client_address) {
384 return new QuicConnection(connection_id, client_address, helper_,
392 return new QuicConnection(connection_id, client_address, helper_,
399 return new QuicConnection(connection_id, client_address, helper_,
  /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/x86_64-linux-glibc2.11-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.11-4.8/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 64 def verify_request(self, _request, client_address):
65 return client_address[0] == self.server_address[0]
74 def handle_error(self, request, client_address):
92 SocketServer.BaseServer.handle_error(self, request, client_address)
122 def __init__(self, request, client_address, socket_server,
131 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_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
reflectionhandler_unittest.py 67 self.client_address = '127.0.0.1'

Completed in 457 milliseconds

1 2 3