Searched refs:connection (Results 1 - 25 of 332) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Dincomplete-member-function-pointer.cpp4 struct connection { struct
7 void (connection::*a)(fake_tuple) = &connection::bar;
9 void (connection::*b)(fake_tuple) = &connection::bar;
/external/smack/src/org/jivesoftware/smack/
H A DConnectionCreationListener.java25 * has been created. The newly created connection will not be actually connected to
34 * Notification that a new connection has been created. The new connection
37 * @param connection the newly created connection.
39 public void connectionCreated(Connection connection); argument
H A DBOSHPacketReader.java39 * Listens for XML traffic from the BOSH connection manager and parses it into
46 private BOSHConnection connection; field in class:BOSHPacketReader
50 * HTTP responses, parse the packets and notifies the connection.
52 * @param connection the corresponding connection for the received packets.
54 public BOSHPacketReader(BOSHConnection connection) { argument
55 this.connection = connection;
59 * Parse the received packets and notify the corresponding connection.
67 if (connection
[all...]
H A DReconnectionManager.java23 * Handles the automatic reconnection process. Every time a connection is dropped without
38 // Holds the connection to the server
39 private Connection connection; field in class:ReconnectionManager
47 // Create a new PrivacyListManager on every established connection. In the init()
49 // instance when the connection is closed.
51 public void connectionCreated(Connection connection) {
52 connection.addConnectionListener(new ReconnectionManager(connection));
57 private ReconnectionManager(Connection connection) { argument
58 this.connection
[all...]
H A DPacketReader.java49 private XMPPConnection connection; field in class:PacketReader
55 protected PacketReader(final XMPPConnection connection) { argument
56 this.connection = connection;
62 * first connection and when reconnecting due to an abruptly disconnection.
73 readerThread.setName("Smack Packet Reader (" + connection.connectionCounterValue + ")");
82 "Smack Listener Processor (" + connection.connectionCounterValue + ")");
92 * Starts the packet reader thread and returns once a connection to the server
93 * has been established. A connection will be attempted for a maximum of five
94 * seconds. An XMPPException will be thrown if the connection fail
[all...]
H A DPacketWriter.java45 private XMPPConnection connection; field in class:PacketWriter
50 * Creates a new packet writer with the specified connection.
52 * @param connection the connection.
54 protected PacketWriter(XMPPConnection connection) { argument
56 this.connection = connection;
61 * Initializes the writer in order to be used. It is called at the first connection and also
62 * is invoked if the connection is disconnected by an error.
65 this.writer = connection
[all...]
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DCollectionNode.java26 CollectionNode(Connection connection, String nodeId) argument
28 super(connection, nodeId);
/external/chromium/chrome/browser/webdata/
H A Dweb_database_migration_unittest.cc188 static int VersionFromConnection(sql::Connection* connection) { argument
190 sql::Statement s(connection->GetUniqueStatement(
221 sql::Connection connection; local
222 ASSERT_TRUE(connection.Open(GetDatabasePath()));
223 ASSERT_TRUE(connection.Execute(contents.data()));
237 sql::Connection connection; local
238 ASSERT_TRUE(connection.Open(GetDatabasePath()));
241 EXPECT_EQ(kCurrentTestedVersionNumber, VersionFromConnection(&connection));
244 EXPECT_FALSE(connection.DoesColumnExist("keywords", "supports_instant"));
245 EXPECT_TRUE(connection
298 sql::Connection connection; local
328 sql::Connection connection; local
347 sql::Connection connection; local
375 sql::Connection connection; local
396 sql::Connection connection; local
423 sql::Connection connection; local
441 sql::Connection connection; local
463 sql::Connection connection; local
477 sql::Connection connection; local
500 sql::Connection connection; local
540 sql::Connection connection; local
572 sql::Connection connection; local
610 sql::Connection connection; local
644 sql::Connection connection; local
662 sql::Connection connection; local
681 sql::Connection connection; local
702 sql::Connection connection; local
746 sql::Connection connection; local
763 sql::Connection connection; local
807 sql::Connection connection; local
865 sql::Connection connection; local
946 sql::Connection connection; local
988 sql::Connection connection; local
1260 sql::Connection connection; local
1285 sql::Connection connection; local
1312 sql::Connection connection; local
1341 sql::Connection connection; local
1373 sql::Connection connection; local
1398 sql::Connection connection; local
[all...]
/external/smack/src/org/jivesoftware/smackx/ping/
H A DServerPingTask.java28 // reference to connection so that it can be GCed.
34 protected ServerPingTask(Connection connection) { argument
35 this.weakConnection = new WeakReference<Connection>(connection);
39 Connection connection = weakConnection.get();
40 if (connection == null) {
41 // connection has been collected by GC
45 if (connection.isAuthenticated()) {
46 PingManager pingManager = PingManager.getInstanceFor(connection);
/external/chromium/app/sql/
H A Ddiagnostic_error_delegate.h9 #include "app/sql/connection.h"
28 virtual int OnError(int error, Connection* connection, argument
31 << ", errno " << connection->GetLastErrno()
32 << ": " << connection->GetErrorMessage();
/external/qemu/android/
H A Dadb-server.h30 * connection - An opaque pointer defining the connection between the host and
32 * host <-> guest connection.
34 typedef void (*adbguest_connect)(void* opaque, void* connection);
41 * connection - An opaque pointer defining the connection between the host and
43 * host <-> guest connection.
47 void* connection,
56 * connection - An opaque pointer defining the connection betwee
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/testdata/handlers/sub/
H A Dno_wsh_at_the_end.py40 request.connection.write(
H A Dplain_wsh.py36 request.connection.write('sub/plain_wsh.py is called for %s, %s' %
H A Dwrong_handshake_sig_wsh.py40 request.connection.write(
H A Dwrong_transfer_sig_wsh.py40 request.connection.write(
/external/chromium/net/server/
H A Dhttp_server.cc73 Connection* connection = FindConnection(connection_id); local
74 if (connection == NULL)
94 connection->is_web_socket_ = true;
95 connection->socket_->Send(base::StringPrintf(
104 connection->socket_->Send(reinterpret_cast<char*>(digest.a), 16);
109 Connection* connection = FindConnection(connection_id); local
110 if (connection == NULL)
113 DCHECK(connection->is_web_socket_);
116 connection->socket_->Send(&message_start, 1);
117 connection
122 Connection* connection = FindConnection(connection_id); local
130 Connection* connection = FindConnection(connection_id); local
140 Connection* connection = FindConnection(connection_id); local
155 Connection* connection = FindConnection(connection_id); local
166 Connection* connection = FindConnection(connection_id); local
182 Connection* connection = FindConnection(connection_id); local
283 ParseHeaders(Connection* connection, HttpServerRequestInfo* info, int* ppos) argument
363 Connection* connection = new Connection(this, socket); local
371 Connection* connection = FindConnection(socket); local
419 Connection* connection = FindConnection(socket); local
[all...]
/external/chromium/chrome/browser/sync/syncable/
H A Ddirectory_backing_store_unittest.cc9 #include "app/sql/connection.h"
75 sql::Connection connection; local
76 ASSERT_TRUE(connection.Open(GetDatabasePath()));
77 ASSERT_TRUE(connection.BeginTransaction());
78 ASSERT_TRUE(connection.Execute(
190 ASSERT_TRUE(connection.CommitTransaction());
200 sql::Connection connection; local
201 ASSERT_TRUE(connection.Open(GetDatabasePath()));
202 ASSERT_TRUE(connection.BeginTransaction());
203 ASSERT_TRUE(connection
304 sql::Connection connection; local
426 sql::Connection connection; local
536 sql::Connection connection; local
642 sql::Connection connection; local
746 sql::Connection connection; local
851 sql::Connection connection; local
957 sql::Connection connection; local
990 sql::Connection connection; local
1020 sql::Connection connection; local
1038 sql::Connection connection; local
1053 sql::Connection connection; local
1072 sql::Connection connection; local
1103 sql::Connection connection; local
1118 sql::Connection connection; local
1127 sql::Connection connection; local
1143 sql::Connection connection; local
1153 sql::Connection connection; local
1181 sql::Connection connection; local
1203 sql::Connection connection; local
1220 sql::Connection connection; local
1281 sql::Connection connection; local
[all...]
/external/okhttp/src/main/java/com/squareup/okhttp/
H A DConnectionPool.java31 * connection alive in the pool before closing it. Default is 5 minutes.
77 Connection connection = i.previous();
78 if (!connection.isAlive() || connection.isExpired(keepAliveDurationNs)) {
80 expiredConnections.add(connection);
82 } else if (connection.isIdle()) {
89 Connection connection = i.previous();
90 if (connection.isIdle()) {
91 expiredConnections.add(connection);
147 for (Connection connection
201 recycle(Connection connection) argument
232 maybeShare(Connection connection) argument
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dmcmain_pic.stderrB.exp3 Remote connection closed
H A Dnlpasssigalrm.stderrB.exp3 Remote connection closed
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DMessageSender.h51 Connection* connection = static_cast<T*>(this)->connection(); local
52 ASSERT(connection);
54 return connection->sendMessage(messageID, argumentEncoder);
64 Connection* connection = static_cast<T*>(this)->connection(); local
65 ASSERT(connection);
67 return connection->sendSync(message, reply, destinationID, timeout);
/external/smack/src/org/jivesoftware/smackx/
H A DXHTMLManager.java43 // Enable the XHTML support on every established connection
47 public void connectionCreated(Connection connection) {
48 XHTMLManager.setServiceEnabled(connection, true);
96 * Enables or disables the XHTML support on a given connection.<p>
101 * @param connection the connection where the service will be enabled or disabled
104 public synchronized static void setServiceEnabled(Connection connection, boolean enabled) { argument
105 if (isServiceEnabled(connection) == enabled)
109 ServiceDiscoveryManager.getInstanceFor(connection).addFeature(namespace);
112 ServiceDiscoveryManager.getInstanceFor(connection)
122 isServiceEnabled(Connection connection) argument
133 isServiceEnabled(Connection connection, String userID) argument
[all...]
H A DGatewayManager.java41 private Connection connection; field in class:GatewayManager
51 * @param connection
54 private GatewayManager(Connection connection) throws XMPPException{ argument
55 this.connection = connection;
56 this.roster = connection.getRoster();
57 sdManager = ServiceDiscoveryManager.getInstanceFor(connection);
65 DiscoverItems items = sdManager.discoverItems(connection.getHost());
87 gateways.put(itemJID, new Gateway(connection,itemJID));
88 if(itemJID.contains(connection
124 getInstanceFor(Connection connection) argument
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/net/irc/
H A Dircbot.py67 def on_nicknameinuse(self, connection, event):
68 connection.nick(connection.get_nickname() + "_")
70 def on_welcome(self, connection, event):
71 connection.join(self._channel)
74 def on_pubmsg(self, connection, event):
77 if len(request) > 1 and irclib.irc_lower(request[0]) == irclib.irc_lower(self.connection.get_nickname()):
80 connection.privmsg(self._channel, response)
85 self.connection.execute_delayed(interval, callback)
88 self.connection
[all...]
/external/smack/src/org/jivesoftware/smackx/carbons/
H A DCarbonManager.java53 public void connectionCreated(Connection connection) {
54 new CarbonManager(connection);
59 private Connection connection; field in class:CarbonManager
62 private CarbonManager(Connection connection) { argument
63 ServiceDiscoveryManager sdm = ServiceDiscoveryManager.getInstanceFor(connection);
65 this.connection = connection;
66 instances.put(connection, this);
70 * Obtain the CarbonManager responsible for a connection.
72 * @param connection th
76 getInstanceFor(Connection connection) argument
[all...]

Completed in 509 milliseconds

1234567891011>>