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

  /external/webkit/WebCore/page/
Connection.h 34 class Connection : public RefCounted<Connection> {
44 static PassRefPtr<Connection> create() { return adoptRef(new Connection()); }
49 Connection() { }
  /external/webkit/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;
  /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...]
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 45 private Connection mServiceConnection = new Connection(); // never null
60 mServiceConnection = new Connection();
65 private class Connection implements ServiceConnection {
LocationProviderProxy.java 51 private Connection mServiceConnection = new Connection(); // never null
78 mServiceConnection = new Connection();
83 private class Connection implements ServiceConnection, Runnable {
265 // default implementation if we lost connection to the provider
  /frameworks/base/core/jni/
android_view_InputQueue.cpp 67 class Connection : public RefBase {
69 virtual ~Connection();
79 Connection(uint16_t id,
84 // A unique id for this connection.
106 KeyedVector<int32_t, sp<Connection> > mConnectionsByReceiveFd;
156 sp<Connection> connection = new Connection(connectionId, inputChannel, looper); local
157 status_t result = connection->inputConsumer.initialize();
164 connection->inputHandlerObjGlobal = env->NewGlobalRef(inputHandlerObj)
199 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
225 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
251 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
300 sp<Connection> connection; local
    [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 {
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...]
  /frameworks/base/core/java/android/net/http/
Connection.java 43 abstract class Connection {
46 * Allow a TCP connection 60 idle seconds before erroring out
58 /** The low level connection */
62 * The server SSL certificate associated with this connection
63 * (null if the connection is not secure)
70 * The host this connection is connected to. If using proxy,
75 /** true if the connection can be reused for sending more requests */
95 private static final String HTTP_CONNECTION = "http.connection";
101 * connection reduces memory churn.
105 protected Connection(Context context, HttpHost host
    [all...]
  /frameworks/base/core/java/android/speech/
SpeechRecognizer.java 96 /** The connection to the actual service */
97 private Connection mConnection;
127 * Temporary queue, saving the messages until the connection will be established, afterwards,
148 private class Connection implements ServiceConnection {
247 if (mConnection == null) { // first time connection
248 mConnection = new Connection();
  /frameworks/base/telephony/java/com/android/internal/telephony/
Connection.java 23 public abstract class Connection {
78 * Gets address (e.g. phone number) associated with connection.
87 * Gets CDMA CNAP name associated with connection.
103 * Gets CDMA CNAP presentation associated with connection.
112 * @return Call that owns this Connection, or null if none
117 * Connection create time in currentTimeMillis() format
125 * Connection connect time in currentTimeMillis() format.
134 * The time when this Connection makes a transition into ENDED or FAIL.
148 * If this connection is HOLDING, return the number of milliseconds
150 * If this connection is in any other state, return 0
    [all...]
  /frameworks/base/libs/ui/
InputDispatcher.cpp 522 commandEntry->connection.clear();
821 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
822 prepareDispatchCycleLocked(currentTime, connection, eventEntry, & inputTarget,
909 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
1381 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
1869 sp<Connection> connection = d->mConnectionsByReceiveFd.valueAt(connectionIndex); local
2195 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
2723 const Connection* connection = mActiveConnections[i]; local
2757 sp<Connection> connection = new Connection(inputChannel); local
2794 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
2823 sp<Connection> connection = mConnectionsByReceiveFd.valueAt(connectionIndex); local
2898 sp<Connection> connection = commandEntry->connection; local
    [all...]
  /frameworks/base/include/ui/
InputDispatcher.h 536 // Tracks the progress of dispatching a particular event to a particular connection.
587 class Connection;
595 sp<Connection> connection; member in struct:android::InputDispatcher::CommandEntry
776 class Connection : public RefBase {
778 virtual ~Connection();
799 explicit Connection(const sp<InputChannel>& inputChannel);
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 289 milliseconds