Searched defs:Connection (Results 1 - 22 of 22) sorted by relevance

/external/clang/test/CodeGen/
H A D2002-03-12-StructInitialize.c8 } Connection; typedef in typeref:struct:Connection_Type
10 Connection link[3]
H A D2002-03-12-StructInitializer.c12 } Connection; typedef in typeref:struct:Connection_Type
14 Connection link[3]
/external/webkit/Source/WebCore/page/
H A DConnection.h34 class Connection : public RefCounted<Connection> { class in namespace:WebCore
44 static PassRefPtr<Connection> create() { return adoptRef(new Connection()); }
49 Connection() { } function in class:WebCore::Connection
/external/webkit/Source/WebKit/android/wds/
H A DConnection.h53 class Connection { class in namespace:android::WDS
55 Connection(int conn): m_socket(conn) {} function in class:android::WDS::Connection
77 Connection* accept() const;
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DMessageSender.h30 #include "Connection.h"
51 Connection* connection = static_cast<T*>(this)->connection();
57 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, double timeout = Connection::NoTimeout) argument
62 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout = Connection::NoTimeout) argument
64 Connection* connection = static_cast<T*>(this)->connection();
H A DConnection.cpp27 #include "Connection.h"
40 class Connection::SyncMessageState : public ThreadSafeRefCounted<Connection::SyncMessageState> {
64 bool processIncomingMessage(Connection*, IncomingMessage&);
95 RefPtr<Connection> connection;
101 PassRefPtr<Connection::SyncMessageState> Connection::SyncMessageState::getOrCreate(RunLoop* runLoop)
117 Connection::SyncMessageState::SyncMessageState(RunLoop* runLoop)
123 Connection::SyncMessageState::~SyncMessageState()
131 bool Connection
195 Connection::Connection(Identifier identifier, bool isServer, Client* client, RunLoop* clientRunLoop) function in class:CoreIPC::Connection
[all...]
H A DConnection.h78 class Connection : public ThreadSafeRefCounted<Connection> { class in namespace:CoreIPC
85 virtual void didReceiveMessage(Connection*, MessageID, ArgumentDecoder*) = 0;
86 virtual SyncReplyMode didReceiveSyncMessage(Connection*, MessageID, ArgumentDecoder*, ArgumentEncoder*) { ASSERT_NOT_REACHED(); return AutomaticReply; }
94 virtual void didClose(Connection*) = 0;
95 virtual void didReceiveInvalidMessage(Connection*, MessageID) = 0;
96 virtual void syncMessageSendTimedOut(Connection*) = 0;
112 static PassRefPtr<Connection> createServerConnection(Identifier, Client*, RunLoop* clientRunLoop);
113 static PassRefPtr<Connection> createClientConnection(Identifier, Client*, RunLoop* clientRunLoop);
114 ~Connection();
[all...]
/external/chromium/net/server/
H A Dhttp_server.h56 class Connection { class in class:net::HttpServer
61 explicit Connection(HttpServer* server, ListenSocket* sock);
62 ~Connection();
74 DISALLOW_COPY_AND_ASSIGN(Connection);
76 friend class Connection;
87 bool ParseHeaders(Connection* connection,
91 Connection* FindConnection(int connection_id);
92 Connection* FindConnection(ListenSocket* socket);
96 typedef std::map<int, Connection*> IdToConnectionMap;
98 typedef std::map<ListenSocket*, Connection*> SocketToConnectionMa
[all...]
H A Dhttp_server.cc24 int HttpServer::Connection::lastId_ = 0;
73 Connection* connection = FindConnection(connection_id);
98 "Connection: Upgrade\r\n"
109 Connection* connection = FindConnection(connection_id);
122 Connection* connection = FindConnection(connection_id);
130 Connection* connection = FindConnection(connection_id);
140 Connection* connection = FindConnection(connection_id);
155 Connection* connection = FindConnection(connection_id);
166 Connection* connection = FindConnection(connection_id);
182 Connection* connectio
189 HttpServer::Connection::Connection(HttpServer* server, ListenSocket* sock) function in class:net::HttpServer::Connection
[all...]
/external/qemu/proxy/
H A Dproxy_http_connector.c32 typedef struct Connection { struct
35 } Connection; typedef in typeref:struct:Connection
50 connection_init( Connection* conn )
86 Connection* conn = (Connection*)root;
110 Connection* conn = (Connection*)root;
179 Connection* conn;
/external/chromium/app/sql/
H A Dconnection.cc62 Connection::StatementRef::StatementRef()
67 Connection::StatementRef::StatementRef(Connection* connection,
74 Connection::StatementRef::~StatementRef() {
80 void Connection::StatementRef::Close() {
88 Connection::Connection() function in class:sql::Connection
97 Connection::~Connection() {
101 bool Connection
[all...]
H A Dconnection.h71 class Connection;
94 virtual int OnError(int error, Connection* connection, Statement* stmt) = 0;
102 class Connection { class in namespace:sql
109 Connection();
110 ~Connection();
294 // The Connection may revoke a StatementRef in some error cases, so callers
300 StatementRef(Connection* connection, sqlite3_stmt* stmt);
307 Connection* connection() const { return connection_; }
322 Connection* connection_;
382 DISALLOW_COPY_AND_ASSIGN(Connection);
[all...]
/external/llvm/include/llvm/CodeGen/
H A DScheduleDFS.h95 struct Connection { struct in class:llvm::SchedDFSResult
99 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} function in struct:llvm::SchedDFSResult::Connection
112 std::vector<SmallVector<Connection, 4> > SubtreeConnections;
/external/okhttp/src/main/java/com/squareup/okhttp/
H A DConnection.java67 public final class Connection implements Closeable { class in inherits:Closeable
92 public Connection(Address address, Proxy proxy, InetSocketAddress inetSocketAddress, method in class:Connection
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dport.cc151 std::vector<Connection*> list;
163 Connection* Port::GetConnection(const talk_base::SocketAddress& remote_addr) {
190 void Port::AddConnection(Connection* conn) {
364 Connection* conn = GetConnection(addr);
437 void Port::OnConnectionDestroyed(Connection* conn) {
466 explicit ConnectionRequest(Connection* connection) : connection_(connection) {
502 Connection* connection_;
506 // Connection
509 Connection::Connection(Por function in class:cricket::Connection
[all...]
H A Dport.h52 class Connection;
140 typedef std::map<talk_base::SocketAddress, Connection*> AddressMap;
144 Connection* GetConnection(const talk_base::SocketAddress& remote_addr);
148 virtual Connection* CreateConnection(const Candidate& remote_candidate,
152 sigslot::signal2<Port*, Connection*> SignalConnectionCreated;
221 void AddConnection(Connection* conn);
259 void OnConnectionDestroyed(Connection* conn);
268 friend class Connection;
273 class Connection : public talk_base::MessageHandler, class in namespace:cricket
276 virtual ~Connection();
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DDefaultServer.java83 private Map<Long,Connection> connecting = new ConcurrentHashMap<Long,Connection>();
309 Connection addedConnection = null;
319 Connection c = connecting.remove(tempId);
321 c = new Connection(channels.size());
401 log.log( Level.INFO, "Connection closed:{0}.", p );
403 log.log( Level.FINE, "Connection closed:{0}.", p );
413 Connection removed = null;
419 removed = (Connection)endpointConnections.remove(p);
440 protected class Connection implement class in class:DefaultServer
449 public Connection( int channelCount ) method in class:DefaultServer.Connection
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DConnection.java29 * A <code>Connection</code> is used to establish an encrypted TCP/IP
34 * <li>creates a {@link #Connection(String) Connection} object.</li>
42 * @version $Id: Connection.java 37 2011-05-28 22:31:46Z dkocher@sudo.ch $
45 public class Connection class
110 * Prepares a fresh <code>Connection</code> object which can then be used
113 * Same as {@link #Connection(String, int) Connection(hostname, 22)}.
117 public Connection(String hostname) method in class:Connection
123 * Prepares a fresh <code>Connection</cod
131 public Connection(String hostname, int port) method in class:Connection
137 public Connection(String hostname, int port, String identification) method in class:Connection
[all...]
/external/openssh/
H A Dssh-keyscan.c84 typedef struct Connection { struct
102 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
105 TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
422 error("%s: Connection closed by remote host", c->c_name);
/external/smack/src/org/jivesoftware/smack/
H A DConnection.java47 * The abstract Connection class provides an interface for connections to a
55 * Connection con = new XMPPConnection("igniterealtime.org");
73 * Connections can be reused between connections. This means that an Connection
74 * may be connected, disconnected and then connected again. Listeners of the Connection
77 * If a connected Connection gets disconnected abruptly then it will try to reconnect
85 public abstract class Connection { class
220 * Create a new Connection to a XMPP server.
224 protected Connection(ConnectionConfiguration configuration) { method in class:Connection
480 * the XMPP server. The Connection can still be used for connecting to the server
495 * by closing the stream. The Connection ca
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdi.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 2489 milliseconds