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

12

/external/lldb/source/Core/
H A DConnection.cpp1 //===-- Connection.cpp ------------------------------------------*- C++ -*-===//
14 #include "lldb/Core/Connection.h"
18 Connection::Connection () function in class:Connection
22 Connection::~Connection ()
/external/lldb/include/lldb/Core/
H A DConnection.h1 //===-- Connection.h --------------------------------------------*- C++ -*-===//
22 /// @class Connection Connection.h "lldb/Core/Connection.h"
34 class Connection class in namespace:lldb_private
40 Connection ();
47 ~Connection ();
155 // For Connection only
157 DISALLOW_COPY_AND_ASSIGN (Connection);
/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/chromium_org/components/proximity_auth/
H A Dconnection.cc13 Connection::Connection(const RemoteDevice& remote_device) function in class:proximity_auth::Connection
19 Connection::~Connection() {
22 bool Connection::IsConnected() const {
26 void Connection::SendMessage(scoped_ptr<WireMessage> message) {
41 void Connection::AddObserver(ConnectionObserver* observer) {
45 void Connection::RemoveObserver(ConnectionObserver* observer) {
49 void Connection::SetStatus(Status status) {
62 void Connection
[all...]
H A Dconnection.h21 class Connection { class in namespace:proximity_auth
30 explicit Connection(const RemoteDevice& remote_device);
31 virtual ~Connection();
102 DISALLOW_COPY_AND_ASSIGN(Connection);
/external/chromium_org/ppapi/proxy/
H A Dconnection.h19 struct Connection { struct in namespace:ppapi::proxy
20 Connection() : browser_sender(0), function in struct:ppapi::proxy::Connection
25 Connection(IPC::Sender* browser, IPC::Sender* renderer) function in struct:ppapi::proxy::Connection
31 Connection(IPC::Sender* browser, IPC::Sender* renderer, int routing_id) function in struct:ppapi::proxy::Connection
/external/chromium_org/components/devtools_bridge/android/java/src/org/chromium/components/devtools_bridge/
H A DSocketTunnelServer.java26 private final Map<Integer, Connection> mClientConnections =
27 new HashMap<Integer, Connection>();
31 private final ConcurrentMap<Integer, Connection> mServerConnections =
32 new ConcurrentHashMap<Integer, Connection>();
45 for (Connection connection : mClientConnections.values()) {
93 Connection connection = new Connection(connectionId);
107 Connection connection = mClientConnections.get(connectionId);
113 private final class Connection extends ConnectionBase implements Runnable { class in class:SocketTunnelServer
114 public Connection(in method in class:SocketTunnelServer.Connection
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dhttpserver.h80 class Connection : private IHttpNotify { class in class:rtc::HttpServer
82 Connection(int connection_id, HttpServer* server);
83 virtual ~Connection();
103 Connection* Find(int connection_id);
106 friend class Connection;
107 typedef std::map<int,Connection*> ConnectionMap;
H A Dhttpserver.cc48 Connection* connection = new Connection(connection_id, this);
57 if (Connection* connection = Find(connection_id)) {
68 if (Connection* connection = Find(connection_id)) {
80 std::list<Connection*> connections;
85 for (std::list<Connection*>::const_iterator it = connections.begin();
91 HttpServer::Connection*
106 Connection* connection = it->second;
117 // HttpServer::Connection
120 HttpServer::Connection function in class:rtc::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_org/sync/engine/net/
H A Dserver_connection_manager.cc74 ServerConnectionManager::Connection::Connection( function in class:syncer::ServerConnectionManager::Connection
78 ServerConnectionManager::Connection::~Connection() {
81 bool ServerConnectionManager::Connection::ReadBufferResponse(
102 bool ServerConnectionManager::Connection::ReadDownloadResponse(
118 ServerConnectionManager* manager, Connection* connection)
127 ServerConnectionManager::Connection*
146 string ServerConnectionManager::Connection::MakeConnectionURL(
158 int ServerConnectionManager::Connection
[all...]
H A Dserver_connection_manager.h141 class Connection { class in class:syncer::ServerConnectionManager
143 explicit Connection(ServerConnectionManager* scm);
144 virtual ~Connection();
212 // Factory method to create an Connection object we can use for
214 virtual Connection* MakeConnection();
261 // Helper to check terminated flags and build a Connection object, installing
264 Connection* MakeActiveConnection();
266 // Called by Connection objects as they are destroyed to allow the
268 void OnConnectionDestroyed(Connection* connection);
306 Connection* active_connection
[all...]
/external/chromium_org/chrome/browser/devtools/device/adb/
H A Dmock_adb_server.cc175 class Connection : base::NonThreadSafe { class in class:__anon3534::SimpleHttpServer
177 Connection(net::StreamSocket* socket, const ParserFactory& factory);
178 virtual ~Connection();
193 base::WeakPtrFactory<Connection> weak_factory_;
195 DISALLOW_COPY_AND_ASSIGN(Connection);
221 SimpleHttpServer::Connection::Connection(net::StreamSocket* socket, function in class:__anon3534::SimpleHttpServer::Connection
224 parser_(factory.Run(base::Bind(&Connection::Send,
235 SimpleHttpServer::Connection::~Connection() {
[all...]
/external/chromium_org/chrome/browser/devtools/device/
H A Dport_forwarding_controller.cc254 class PortForwardingController::Connection class in class:PortForwardingController
257 Connection(Registry* registry,
261 virtual ~Connection();
270 friend class base::DeleteHelper<Connection>;
289 base::WeakPtr<Connection> weak_connection, int port, int increment);
306 base::WeakPtrFactory<Connection> weak_factory_;
308 DISALLOW_COPY_AND_ASSIGN(Connection);
311 PortForwardingController::Connection::Connection( function in class:PortForwardingController::Connection
329 PortForwardingController::Connection
[all...]
/external/chromium_org/components/devtools_bridge/test/android/javatests/src/org/chromium/components/devtools_bridge/
H A DSocketTunnelClient.java36 private final Map<Integer, Connection> mServerConnections =
37 new HashMap<Integer, Connection>();
42 private final ConcurrentMap<Integer, Connection> mPendingConnections =
43 new ConcurrentHashMap<Integer, Connection>();
167 throw new ProtocolError("Connection already acknowledged");
175 Connection connection = mPendingConnections.get(connectionId);
189 Connection connection = mServerConnections.get(connectionId);
194 Connection connection = mPendingConnections.get(connectionId);
225 for (Connection connection : mServerConnections.values()) {
229 for (Connection connectio
278 private final class Connection extends ConnectionBase implements Runnable { class in class:SocketTunnelClient
279 public Connection(int id, LocalSocket socket) { method in class:SocketTunnelClient.Connection
[all...]
/external/chromium_org/sql/
H A Dconnection.h80 class Connection;
82 class SQL_EXPORT Connection { class in namespace:sql
89 Connection();
90 ~Connection();
237 // TODO(shess): Bake auto_vacuum into Connection's API so it can
244 // object so that all future operations against the Connection (or
460 // The Connection may revoke a StatementRef in some error cases, so callers
464 // |connection| is the sql::Connection instance associated with
472 StatementRef(Connection* connection, sqlite3_stmt* stmt, bool was_valid);
485 Connection* connectio
[all...]
H A Dconnection.cc149 Connection::ErrorIgnorerCallback* Connection::current_ignorer_cb_ = NULL;
152 bool Connection::ShouldIgnoreSqliteError(int error) {
159 void Connection::SetErrorIgnorer(Connection::ErrorIgnorerCallback* cb) {
165 void Connection::ResetErrorIgnorer() {
176 Connection::StatementRef::StatementRef(Connection* connection,
186 Connection::StatementRef::~StatementRef() {
192 void Connection
213 Connection::Connection() function in class:sql::Connection
[all...]
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/selfbraille/
H A DSelfBrailleClient.java85 private volatile Connection mConnection;
124 Connection localConnection = new Connection();
151 Connection localConnection = mConnection;
193 private class Connection implements ServiceConnection { class in class:SelfBrailleClient
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/
H A DTranslatorManager.java81 private Connection mConnection;
126 Connection localConnection = new Connection();
145 Connection localConnection = mConnection;
152 private class Connection implements ServiceConnection { class in class:TranslatorManager
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dturnserver.h114 class Connection { class in class:cricket::TurnServer
116 Connection() : proto_(PROTO_UDP), socket_(NULL) {} function in class:cricket::TurnServer::Connection
117 Connection(const rtc::SocketAddress& src,
122 bool operator==(const Connection& t) const;
123 bool operator<(const Connection& t) const;
135 typedef std::map<Connection, Allocation*> AllocationMap;
147 void HandleStunMessage(Connection* conn, const char* data, size_t size);
148 void HandleBindingRequest(Connection* conn, const StunMessage* msg);
149 void HandleAllocateRequest(Connection* conn, const TurnMessage* msg,
153 bool CheckAuthorization(Connection* con
[all...]
/external/llvm/include/llvm/CodeGen/
H A DScheduleDFS.h93 struct Connection { struct in class:llvm::SchedDFSResult
97 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {} function in struct:llvm::SchedDFSResult::Connection
110 std::vector<SmallVector<Connection, 4> > SubtreeConnections;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnection.java66 public final class Connection implements Closeable { class in inherits:Closeable
86 public Connection(ConnectionPool pool, Route route) { method in class:Connection
100 if (this.owner != null) throw new IllegalStateException("Connection already has an owner!");
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
H A DDisplay.java51 private Connection mConnection;
81 * current thread. Connection state will be reported to {@code listener).
92 * with it, which will then be used to execute callbacks. Connection
152 private class Connection implements ServiceConnection { class in class:Display
209 Connection localConnection = new Connection();
236 Connection localConnection = mConnection;
/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...]

Completed in 1205 milliseconds

12