HomeSort by relevance Sort by last modified time
    Searched defs:Connection (Results 26 - 50 of 67) sorted by null

12 3

  /external/openssh/
ssh-keyscan.c 69 /* The number of seconds after which to give up on a TCP connection */
83 * Keep a connection structure for each file descriptor. The state
86 typedef struct Connection {
87 u_char c_status; /* State of connection on this file desc. */
99 char *c_name; /* Hostname of connection for errors */
101 char *c_output_name; /* Hostname of connection for output */
103 struct ssh *c_ssh; /* SSH-connection */
104 struct timeval c_tv; /* Time at which connection gets aborted */
105 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
108 TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue *
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
RemoteDisplayProviderProxy.java 39 * Maintains a connection to a particular remote display provider service.
52 // Connection state
55 private Connection mActiveConnection;
230 Connection connection = new Connection(provider); local
231 if (connection.register()) {
232 mActiveConnection = connection;
252 private void onConnectionReady(Connection connection) {
437 Connection connection = mConnectionRef.get(); local
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_tv_TvInputHal.cpp 250 // Connection between a surface and a stream.
251 class Connection {
253 Connection() {}
290 KeyedVector<int, KeyedVector<int, Connection> > mConnections;
336 KeyedVector<int, Connection>& connections = mConnections.editValueFor(deviceId);
338 connections.add(streamId, Connection());
340 Connection& connection = connections.editValueFor(streamId); local
341 if (connection.mSurface == surface) {
345 // Clear the surface in the connection
411 Connection& connection = connections.editValueFor(streamId); local
544 Connection& connection = connections.editValueFor(streamId); local
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
ImsConference.java 24 import android.telecom.Connection.VideoProvider;
25 import android.telecom.Connection;
49 * An IMS conference call consists of a conference host connection and potentially a list of
50 * conference participants. The conference host connection represents the radio connection to the
51 * IMS conference server. Since it is not a connection to any one individual, it is not represented
53 * connection via a conference event package. Conference participant connections do not represent
58 * connection and is responsible for managing the conference participant connections which represent
67 private final Connection.Listener mParticipantListener = new Connection.Listener()
526 ConferenceParticipantConnection connection = local
536 ConferenceParticipantConnection connection = local
582 ConferenceParticipantConnection connection = new ConferenceParticipantConnection( local
590 mConferenceParticipantConnections.put(participant.getHandle(), connection); local
    [all...]
TelephonyConnection.java 28 import android.telecom.Connection;
34 import com.android.internal.telephony.Connection.PostDialListener;
49 abstract class TelephonyConnection extends Connection {
68 com.android.internal.telephony.Connection connection =
69 (com.android.internal.telephony.Connection) ar.result;
71 if (connection != null &&
72 ((connection.getAddress() != null &&
74 mOriginalConnection.getAddress().contains(connection.getAddress())) ||
75 connection.getStateBeforeHandover() == mOriginalConnection.getState()))
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
DefaultServer.java 83 private Map<Long,Connection> connecting = new ConcurrentHashMap<Long,Connection>();
122 // for "connection types" and some kind of registry of kernel and
281 // threads for the same hosted connection.
309 Connection addedConnection = null;
319 Connection c = connecting.remove(tempId);
321 c = new Connection(channels.size());
332 // If it's channel 0 then this is the initial connection
333 // and we will send the connection information
336 // over the reliable connection at this point
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Connection.java 34 public abstract class Connection {
41 * Listener interface for events related to the connection which should be reported to the
42 * {@link android.telecom.Connection}.
50 android.telecom.Connection.VideoProvider videoProvider);
72 android.telecom.Connection.VideoProvider videoProvider) {}
108 protected long mHoldingStartTime; // The time when the Connection last transitioned
110 protected Connection mOrigConnection;
117 private static String LOG_TAG = "Connection";
126 private android.telecom.Connection.VideoProvider mVideoProvider;
132 * Gets address (e.g. phone number) associated with connection
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RegisteredMediaRouteProvider.java 42 * Maintains a connection to a particular media route provider service.
55 private Connection mActiveConnection;
197 Connection connection = new Connection(messenger); local
198 if (connection.register()) {
199 mActiveConnection = connection;
219 private void onConnectionReady(Connection connection) {
220 if (mActiveConnection == connection) {
621 Connection connection = mConnectionRef.get(); local
    [all...]
  /frameworks/native/services/inputflinger/
InputDispatcher.cpp 79 // Amount of time to allow touch events to be streamed out to a connection before requiring
603 commandEntry->connection.clear();
936 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex); local
1030 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex); local
1651 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex); local
2119 sp<Connection> connection = d->mConnectionsByFd.valueAt(connectionIndex); local
3254 const sp<Connection>& connection = mConnectionsByFd.valueAt(i); local
3327 sp<Connection> connection = new Connection(inputChannel, inputWindowHandle, monitor); local
3373 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex); local
3401 sp<Connection> connection = mConnectionsByFd.valueAt(connectionIndex); local
3475 sp<Connection> connection = commandEntry->connection; local
3528 sp<Connection> connection = commandEntry->connection; local
3574 startDispatchCycleLocked(now(), connection); local
    [all...]
InputDispatcher.h 534 // Tracks the progress of dispatching a particular event to a particular connection.
586 class Connection;
594 sp<Connection> connection; member in struct:android::InputDispatcher::CommandEntry
794 class Connection : public RefBase {
796 virtual ~Connection();
819 // Queue of events that need to be published to the connection.
822 // Queue of events that have been published to the connection but that have not
826 explicit Connection(const sp<InputChannel>& inputChannel,
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 116 private Connection mConnection;
263 // Revoke the connection or stop LegacyVpnRunner.
526 Connection oldConnection = mConnection;
545 Connection connection = new Connection(); local
546 if (!mContext.bindServiceAsUser(intent, connection,
552 mConnection = connection;
769 private class Connection implements ServiceConnection {
    [all...]
  /frameworks/base/services/core/java/com/android/server/tv/
TvInputHardwareManager.java 70 * This class does a basic connection management and forwarding calls to TvInputHal which eventually
81 private final SparseArray<Connection> mConnections = new SparseArray<>();
149 Connection connection = new Connection(info); local
150 connection.updateConfigsLocked(configs);
151 mConnections.put(info.getDeviceId(), connection); local
171 Connection connection = mConnections.get(deviceId); local
172 if (connection == null)
199 Connection connection = mConnections.get(deviceId); local
225 Connection connection = mConnections.get(deviceId); local
296 Connection connection = mConnections.get(deviceId); local
368 Connection connection = mConnections.get(deviceId); local
394 Connection connection = mConnections.get(deviceId); local
419 Connection connection = mConnections.get(i); local
439 Connection connection = mConnections.get(deviceId); local
460 Connection connection = mConnections.get(deviceId); local
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
Connection.java 42 * Represents a phone call or connection to a remote endpoint that carries voice and/or video
45 * Implementations create a custom subclass of {@code Connection} and return it to the framework
50 * Implementations are then responsible for updating the state of the {@code Connection}, and
51 * must call {@link #destroy()} to signal to the framework that the {@code Connection} is no
54 public abstract class Connection extends Conferenceable {
57 * The connection is initializing. This is generally the first state for a {@code Connection}
63 * The connection is new and not connected.
68 * An incoming connection is in the ringing state. During this state, the user's ringer or
74 * An outgoing connection is in the dialing state. In this state the other party has not ye
1572 Connection connection = (Connection) c; local
1879 Connection connection = (Connection) c; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winldap.h 173 PLDAP Connection;
551 WINLDAPAPI ULONG LDAPAPI ldap_parse_resultW (LDAP *Connection,LDAPMessage *ResultMessage,ULONG *ReturnCode,PWCHAR *MatchedDNs,PWCHAR *ErrorMessage,PWCHAR **Referrals,PLDAPControlW **ServerControls,BOOLEAN Freeit);
552 WINLDAPAPI ULONG LDAPAPI ldap_parse_resultA (LDAP *Connection,LDAPMessage *ResultMessage,ULONG *ReturnCode,PCHAR *MatchedDNs,PCHAR *ErrorMessage,PCHAR **Referrals,PLDAPControlA **ServerControls,BOOLEAN Freeit);
553 WINLDAPAPI ULONG LDAPAPI ldap_parse_extended_resultA (LDAP *Connection,LDAPMessage *ResultMessage,PCHAR *ResultOID,struct berval **ResultData,BOOLEAN Freeit);
554 WINLDAPAPI ULONG LDAPAPI ldap_parse_extended_resultW (LDAP *Connection,LDAPMessage *ResultMessage,PWCHAR *ResultOID,struct berval **ResultData,BOOLEAN Freeit);
570 WINLDAPAPI ULONG LDAPAPI ldap_parse_result (LDAP *Connection,LDAPMessage *ResultMessage,ULONG *ReturnCode,PCHAR *MatchedDNs,PCHAR *ErrorMessage,PCHAR **Referrals,PLDAPControlA **ServerControls,BOOLEAN Freeit);
    [all...]
adoint.h 86 typedef class ADOConnection Connection;
88 typedef struct ADOConnection Connection;
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
jsoup-1.7.2.jar 
  /prebuilts/tools/common/m2/repository/org/jsoup/jsoup/1.6.3/
jsoup-1.6.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-io/8.1.14.v20131031/
jetty-io-8.1.14.v20131031.jar 
  /prebuilts/sdk/current/support/v7/mediarouter/libs/
android-support-v7-mediarouter.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-websocket/8.1.14.v20131031/
jetty-websocket-8.1.14.v20131031.jar 
  /prebuilts/sdk/org.apache.http.legacy/
org.apache.http.legacy.jar 
  /prebuilts/tools/common/google-api-java-client/1.20.0/
google-api-java-client-min-repackaged-1.20.0.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 775 milliseconds

12 3