HomeSort by relevance Sort by last modified time
    Searched refs:xmpp_connection (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/jingle/notifier/base/
xmpp_connection_unittest.cc 5 #include "jingle/notifier/base/xmpp_connection.h"
96 XmppConnection xmpp_connection(buzz::XmppClientSettings(),
109 XmppConnection xmpp_connection(buzz::XmppClientSettings(),
113 // We need to do this *before* |xmpp_connection| gets destroyed or
128 XmppConnection xmpp_connection(
132 // We need to do this *before* |xmpp_connection| gets destroyed or
147 XmppConnection xmpp_connection(
151 // We need to do this *before* |xmpp_connection| gets destroyed or
160 XmppConnection xmpp_connection(buzz::XmppClientSettings(),
164 xmpp_connection.weak_xmpp_client_-
    [all...]
  /external/chromium_org/sync/tools/testserver/
xmppserver_test.py 244 def OnXmppHandshakeDone(self, xmpp_connection):
245 self.connections.add(xmpp_connection)
247 def OnXmppConnectionClosed(self, xmpp_connection):
248 self.connections.discard(xmpp_connection)
256 xmpp_connection = xmppserver.XmppConnection(
260 xmpp_connection.HandshakeDone(xmppserver.Jid('foo', 'bar'))
268 xmpp_connection.collect_incoming_data(
273 xmpp_connection.collect_incoming_data('<iq type="result"/>')
277 xmpp_connection.collect_incoming_data(
283 xmpp_connection.collect_incoming_data('<foo/>'
    [all...]
xmppserver.py 529 xmpp_connection = XmppConnection(
531 self._connections.add(xmpp_connection)
533 return xmpp_connection
590 def OnXmppHandshakeDone(self, xmpp_connection):
591 self._handshake_done_connections.add(xmpp_connection)
593 def OnXmppConnectionClosed(self, xmpp_connection):
594 self._connections.discard(xmpp_connection)
595 self._handshake_done_connections.discard(xmpp_connection)
sync_testserver.py 83 xmpp_connection = socket_map.get(fd)
86 if xmpp_connection is None:
89 handler(xmpp_connection)
93 xmpp_connection.handle_error()
100 for fd, xmpp_connection in self._xmpp_socket_map.items():
101 is_r = xmpp_connection.readable()
102 is_w = xmpp_connection.writable()
  /external/chromium/net/tools/testserver/
xmppserver_test.py 191 def OnXmppHandshakeDone(self, xmpp_connection):
192 self.connections.add(xmpp_connection)
194 def OnXmppConnectionClosed(self, xmpp_connection):
195 self.connections.discard(xmpp_connection)
203 xmpp_connection = xmppserver.XmppConnection(
207 xmpp_connection.HandshakeDone(xmppserver.Jid('foo', 'bar'))
213 xmpp_connection.collect_incoming_data(
218 xmpp_connection.collect_incoming_data('<iq type="result"/>')
222 xmpp_connection.collect_incoming_data(
228 xmpp_connection.collect_incoming_data('<foo/>'
    [all...]
xmppserver.py 503 xmpp_connection = XmppConnection(sock, self._socket_map, self, addr)
504 self._connections.add(xmpp_connection)
514 def OnXmppHandshakeDone(self, xmpp_connection):
515 self._handshake_done_connections.add(xmpp_connection)
517 def OnXmppConnectionClosed(self, xmpp_connection):
518 self._connections.discard(xmpp_connection)
519 self._handshake_done_connections.discard(xmpp_connection)
testserver.py 159 xmpp_connection = socket_map.get(fd)
162 if xmpp_connection is None:
165 handler(xmpp_connection)
169 xmpp_connection.handle_error()
176 for fd, xmpp_connection in self._xmpp_socket_map.items():
177 is_r = xmpp_connection.readable()
178 is_w = xmpp_connection.writable()
    [all...]

Completed in 469 milliseconds