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

/frameworks/native/services/surfaceflinger/
H A DEventThread.h44 class Connection : public BnDisplayEventConnection { class in class:android::EventThread
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);
84 Vector< sp<EventThread::Connection> > waitForEvent(
93 void removeDisplayEventConnection(const wp<Connection>& connection);
105 SortedVector< wp<Connection> > mDisplayEventConnection
[all...]
H A DEventThread.cpp56 sp<EventThread::Connection> EventThread::createEventConnection() const {
57 return new Connection(const_cast<EventThread*>(this));
61 const sp<EventThread::Connection>& connection) {
69 const wp<EventThread::Connection>& connection) {
75 const sp<EventThread::Connection>& connection) {
87 const sp<EventThread::Connection>& connection) {
146 Vector< sp<EventThread::Connection> > signalConnections;
152 const sp<Connection>& conn(signalConnections[i]);
175 Vector< sp<EventThread::Connection> > EventThread::waitForEvent(
179 Vector< sp<EventThread::Connection> > signalConnection
342 EventThread::Connection::Connection( function in class:android::EventThread::Connection
[all...]
/frameworks/base/core/java/android/net/http/
H A DConnection.java43 abstract class Connection { class
105 protected Connection(Context context, HttpHost host, method in class:Connection
123 static Connection getConnection(
151 "Connection.cancel(): connection closed " + mHost);
331 "Connection.clearPipe(): clearing pipe " + pipe.size());
400 HttpLog.v("Connection.openHttpConnection() " +
481 // Check for 'Connection' directive
/frameworks/base/core/java/android/speech/
H A DSpeechRecognizer.java111 private Connection mConnection;
162 private class Connection implements ServiceConnection { class in class:SpeechRecognizer
262 mConnection = new Connection();
/frameworks/base/services/java/com/android/server/connectivity/
H A DVpn.java95 private Connection mConnection;
309 Connection connection = new Connection();
409 private class Connection implements ServiceConnection { class in class:Vpn
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DConnection.java25 public abstract class Connection { class
31 private static String LOG_TAG = "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.
168 * If this Connection is connected, then it is associated with
198 * Returns true if Connection is connected and is INCOMING or WAITING
215 * @param userdata user can store an any userdata in the Connection object.
222 * Hangup individual Connection
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRegisteredMediaRouteProvider.java53 private Connection mActiveConnection;
195 Connection connection = new Connection(messenger);
217 private void onConnectionReady(Connection connection) {
229 private void onConnectionDied(Connection connection) {
238 private void onConnectionError(Connection connection, String error) {
247 private void onConnectionDescriptorChanged(Connection connection,
299 private Connection mConnection;
306 public void attachConnection(Connection connection) {
379 private final class Connection implement class in class:RegisteredMediaRouteProvider
392 public Connection(Messenger serviceMessenger) { method in class:RegisteredMediaRouteProvider.Connection
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java535 private Connection mConnectingServiceConnection;
536 private Connection mServiceConnection;
682 Connection connection = new Connection();
1428 private class Connection implements ServiceConnection { class in class:TextToSpeech
1516 mServiceConnection = Connection.this;
/frameworks/base/services/input/
H A DInputDispatcher.cpp913 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex);
1007 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex);
1014 if (connection->status == Connection::STATUS_NORMAL) {
1668 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex);
1771 const sp<Connection>& connection, EventEntry* eventEntry, const InputTarget* inputTarget) {
1783 if (connection->status != Connection::STATUS_NORMAL) {
1819 const sp<Connection>& connection, EventEntry* eventEntry, const InputTarget* inputTarget) {
1843 const sp<Connection>& connection, EventEntry* eventEntry, const InputTarget* inputTarget,
1930 const sp<Connection>& connection) {
1936 while (connection->status == Connection
4253 InputDispatcher::Connection::Connection(const sp<InputChannel>& inputChannel, function in class:android::InputDispatcher::Connection
[all...]
H A DInputDispatcher.h586 class Connection;
594 sp<Connection> connection;
786 class Connection : public RefBase { class in class:android::InputDispatcher
788 virtual ~Connection();
818 explicit Connection(const sp<InputChannel>& inputChannel,
878 KeyedVector<int, sp<Connection> > mConnectionsByFd;
1032 void prepareDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>& connection,
1034 void enqueueDispatchEntriesLocked(nsecs_t currentTime, const sp<Connection>& connection,
1036 void enqueueDispatchEntryLocked(const sp<Connection>& connection,
1038 void startDispatchCycleLocked(nsecs_t currentTime, const sp<Connection>
[all...]

Completed in 326 milliseconds