HomeSort by relevance Sort by last modified time
    Searched defs:Connection (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/clang/test/CodeGen/
2002-03-12-StructInitialize.c 8 } Connection;
10 Connection link[3]
2002-03-12-StructInitializer.c 12 } Connection;
14 Connection link[3]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.cpp 5 * Connection data.
38 #include "Connection.h"
45 Connection::Connection(void)
54 Connection::Connection(int socketDescriptor, sockaddr_un *remote)
66 Connection::~Connection(void)
68 LOG_V(" closing Connection...");
71 LOG_I(" Socket connection closed.")
    [all...]
Connection.h 5 * Connection data.
46 class Connection
52 void *connectionData; /**< reference to data related with the connection */
53 bool detached; /**< Connection state */
55 Connection(
59 Connection(
64 virtual ~Connection(
79 * Read bytes from the connection.
91 * Read bytes from the connection.
100 * Write bytes to the connection
    [all...]
  /external/webkit/Source/WebCore/page/
Connection.h 34 class Connection : public RefCounted<Connection> {
44 static PassRefPtr<Connection> create() { return adoptRef(new Connection()); }
49 Connection() { }
  /external/webkit/Source/WebKit/android/wds/
Connection.h 53 class Connection {
55 Connection(int conn): m_socket(conn) {}
73 // Establish a connection to the local host on the given port.
76 // Blocks on the established socket until a new connection arrives.
77 Connection* accept() const;
  /frameworks/native/services/surfaceflinger/
EventThread.h 44 class Connection : public BnDisplayEventConnection {
46 Connection(const sp<EventThread>& eventThread);
55 virtual ~Connection();
68 sp<Connection> createEventConnection() const;
69 status_t registerDisplayEventConnection(const sp<Connection>& connection);
71 void setVsyncRate(uint32_t count, const sp<Connection>& connection);
72 void requestNextVsync(const sp<Connection>& connection);
    [all...]
EventThread.cpp 56 sp<EventThread::Connection> EventThread::createEventConnection() const {
57 return new Connection(const_cast<EventThread*>(this));
61 const sp<EventThread::Connection>& connection) {
63 mDisplayEventConnections.add(connection);
69 const wp<EventThread::Connection>& connection) {
71 mDisplayEventConnections.remove(connection);
75 const sp<EventThread::Connection>& connection) {
333 sp<Connection> connection = local
    [all...]
  /external/chromium/net/server/
http_server.h 56 class Connection {
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
    [all...]
http_server.cc 24 int HttpServer::Connection::lastId_ = 0;
73 Connection* connection = FindConnection(connection_id); local
74 if (connection == NULL)
94 connection->is_web_socket_ = true;
95 connection->socket_->Send(base::StringPrintf(
98 "Connection: Upgrade\r\n"
104 connection->socket_->Send(reinterpret_cast<char*>(digest.a), 16);
109 Connection* connection = FindConnection(connection_id) local
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
363 Connection* connection = new Connection(this, socket); local
371 Connection* connection = FindConnection(socket); local
419 Connection* connection = FindConnection(socket); local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
XHTMLManager.java 24 import org.jivesoftware.smack.Connection;
43 // Enable the XHTML support on every established connection
46 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
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)
    [all...]
LastActivityManager.java 57 * Connection con = new XMPPConnection(&quot;jabber.org&quot;);
86 private Connection connection; field in class:LastActivityManager
88 // Enable the LastActivity support on every established connection
90 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
91 public void connectionCreated(Connection connection) {
92 new LastActivityManager(connection);
100 * @param connection
101 * The Connection that the last activity requests will use.
    [all...]
  /external/qemu/proxy/
proxy_http_connector.c 18 /* A HttpConnector implements a non-HTTP proxied connection
32 typedef struct Connection {
35 } Connection;
50 connection_init( Connection* conn )
63 /* immediate connection ?? */
65 PROXY_LOG("%s: immediate connection", root->name);
86 Connection* conn = (Connection*)root;
110 Connection* conn = (Connection*)root
    [all...]
  /external/smack/src/org/jivesoftware/smack/
ReconnectionManager.java 23 * 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.
50 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
51 public void connectionCreated(Connection connection) {
52 connection.addConnectionListener(new ReconnectionManager(connection));
    [all...]
PrivacyListManager.java 46 private static Map<Connection, PrivacyListManager> instances = Collections
47 .synchronizedMap(new WeakHashMap<Connection, PrivacyListManager>());
49 private Connection connection; field in class:PrivacyListManager
55 // Create a new PrivacyListManager on every established connection. In the init()
57 // instance when the connection is closed.
58 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
59 public void connectionCreated(Connection connection) {
60 new PrivacyListManager(connection);
    [all...]
  /external/chromium/app/sql/
connection.cc 5 #include "app/sql/connection.h"
62 Connection::StatementRef::StatementRef()
67 Connection::StatementRef::StatementRef(Connection* connection,
69 : connection_(connection),
74 Connection::StatementRef::~StatementRef() {
80 void Connection::StatementRef::Close() {
85 connection_ = NULL; // The connection may be getting deleted.
88 Connection::Connection(
    [all...]
connection.h 71 class Connection;
84 // |connection| is db connection where the error happened and |stmt| is
94 virtual int OnError(int error, Connection* connection, Statement* stmt) = 0;
102 class Connection {
109 Connection();
110 ~Connection();
149 // Initializes the SQL connection for the given file, returning true if the
153 // Initializes the SQL connection for a temporary in-memory database. Ther
307 Connection* connection() const { return connection_; } function in class:sql::Connection::StatementRef
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDFS.h 94 /// \brief Record a connection between subtrees and the connection level.
95 struct Connection {
99 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {}
112 std::vector<SmallVector<Connection, 4> > SubtreeConnections;
114 /// Cache the current connection level of each subtree.
179 /// \brief Get the connection level of a subtree.
181 /// For bottom-up trees, the connection level is the latency depth (in cycles)
182 /// of the deepest connection to another subtree.
  /external/smack/src/org/jivesoftware/smackx/carbons/
CarbonManager.java 23 import org.jivesoftware.smack.Connection;
48 private static Map<Connection, CarbonManager> instances =
49 Collections.synchronizedMap(new WeakHashMap<Connection, CarbonManager>());
52 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
53 public void connectionCreated(Connection connection) {
54 new CarbonManager(connection);
59 private Connection connection; field in class:CarbonManager
62 private CarbonManager(Connection connection)
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.cpp 27 #include "Connection.h"
40 class Connection::SyncMessageState : public ThreadSafeRefCounted<Connection::SyncMessageState> {
64 bool processIncomingMessage(Connection*, IncomingMessage&);
95 RefPtr<Connection> connection; member in struct:CoreIPC::Connection::SyncMessageState::ConnectionAndIncomingMessage
101 PassRefPtr<Connection::SyncMessageState> Connection::SyncMessageState::getOrCreate(RunLoop* runLoop)
117 Connection::SyncMessageState::SyncMessageState(RunLoop* runLoop)
123 Connection::SyncMessageState::~SyncMessageState(
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
port.cc 41 // The length of time we wait before timing out readability on a connection.
44 // The length of time we wait before timing out writability on a connection.
91 // use a large value just in case the connection is really slow.
151 std::vector<Connection*> list;
163 Connection* Port::GetConnection(const talk_base::SocketAddress& remote_addr) {
190 void Port::AddConnection(Connection* conn) {
217 // connection for this port while it had STUN requests in flight, because
362 // The fact that we received a successful request means that this connection
364 Connection* conn = GetConnection(addr);
437 void Port::OnConnectionDestroyed(Connection* conn)
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
Connection.java 42 * Holds the sockets and streams of an HTTP, HTTPS, or HTTPS+SPDY connection,
48 * HTTP connections as members of a {@link ConnectionPool connection pool}.
51 * which isn't so much a connection as a single request/response exchange.
55 * a secure connection to a remote host. Newer TLS options are quite useful:
64 * connection to be attempted with modern options and then retried without them
67 public final class Connection implements Closeable {
92 public Connection(Address address, Proxy proxy, InetSocketAddress inetSocketAddress,
133 // Make an SSL Tunnel on the first message pair of each SSL + proxy connection.
175 /** Returns true if {@link #connect} has been attempted on this connection. */
185 * Returns the proxy that this connection is using
    [all...]
  /external/smack/src/org/jivesoftware/smackx/ping/
PingManager.java 29 import org.jivesoftware.smack.Connection;
63 private static Map<Connection, PingManager> instances =
64 Collections.synchronizedMap(new WeakHashMap<Connection, PingManager>());
67 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
68 public void connectionCreated(Connection connection) {
69 new PingManager(connection);
75 private Connection connection; field in class:PingManager
91 private PingManager(Connection connection)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/receipts/
DeliveryReceiptManager.java 25 import org.jivesoftware.smack.Connection;
44 private static Map<Connection, DeliveryReceiptManager> instances =
45 Collections.synchronizedMap(new WeakHashMap<Connection, DeliveryReceiptManager>());
48 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
49 public void connectionCreated(Connection connection) {
50 new DeliveryReceiptManager(connection);
55 private Connection connection; field in class:DeliveryReceiptManager
60 private DeliveryReceiptManager(Connection connection)
    [all...]
  /libcore/luni/src/main/java/java/sql/
Connection.java 24 * A connection represents a link from a Java application to a database. All SQL
25 * statements and results are returned within the context of a connection.
43 public interface Connection extends Wrapper, AutoCloseable {
86 * Discards all warnings that may have arisen for this connection.
96 * Causes the instant release of all database and driver connection
102 * Although the {@code finalize} method of the connection closes the
103 * connection before garbage collection takes place, it is not advisable to
115 * held by this connection are also relinquished. Calling this operation on
116 * connection objects in {@code auto-commit} mode leads to an error.
120 * connection instance is in auto-commit mode
    [all...]

Completed in 1564 milliseconds

1 2 3