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

1 2 3 4 5 6 7 8 91011>>

  /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]
  /external/jetty/src/java/org/eclipse/jetty/io/
ConnectedEndPoint.java 23 Connection getConnection();
24 void setConnection(Connection connection);
Connection.java 24 /** Abstract Connection used by Jetty Connectors.
26 * Jetty will call the handle method of a connection when there is work
27 * to be done on the connection. For blocking connections, this is soon
28 * as the connection is open and handle will keep being called until the
29 * connection is closed. For non-blocking connections, handle will only
30 * be called if there are bytes to be read or the connection becomes writable
35 public interface Connection
39 * Handle the connection.
40 * @return The Connection to use for the next handling of the connection
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
AsyncConnection.java 23 import org.eclipse.jetty.io.Connection;
25 public interface AsyncConnection extends Connection
  /libcore/ojluni/src/main/java/javax/sql/
DataSource.java 28 import java.sql.Connection;
36 * is the preferred means of getting a connection. An object that implements
44 * <LI>Basic implementation -- produces a standard <code>Connection</code>
46 * <LI>Connection pooling implementation -- produces a <code>Connection</code>
47 * object that will automatically participate in connection pooling. This
48 * implementation works with a middle-tier connection pooling manager.
50 * <code>Connection</code> object that may be used for distributed
51 * transactions and almost always participates in connection pooling.
53 * transaction manager and almost always with a connection
    [all...]
PooledConnection.java 28 import java.sql.Connection;
32 * An object that provides hooks for connection pool management.
34 * represents a physical connection to a data source. The connection
44 * it gets back a <code>Connection</code> object. If connection pooling is
45 * being done, that <code>Connection</code> object is actually a handle to
46 * a <code>PooledConnection</code> object, which is a physical connection.
48 * The connection pool manager, typically the application server, maintains
51 * connection pool manager returns a <code>Connection</code> object tha
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
ConnectionTest.java 24 import android.telecom.Connection;
43 Connection connection = createConnection(lock); local
46 assertEquals(Connection.STATE_NEW, connection.getState());
48 connection.setInitializing();
50 assertEquals(Connection.STATE_INITIALIZING, connection.getState());
52 connection.setInitialized();
54 assertEquals(Connection.STATE_NEW, connection.getState())
90 Connection connection = Connection.createFailedConnection( local
109 Connection connection = Connection.createCanceledConnection(); local
126 Connection connection = createConnection(lock); local
141 Connection connection = createConnection(lock); local
156 Connection connection = createConnection(lock); local
173 Connection connection = createConnection(lock); local
192 Connection connection = createConnection(lock); local
206 Connection connection = createConnection(lock); local
226 Connection connection = createConnection(lock); local
242 Connection connection = createConnection(lock); local
257 Connection connection = createConnection(lock); local
299 BasicConnection connection = new BasicConnection(); local
    [all...]
CallDetailsTest.java 28 import android.telecom.Connection;
47 * {@link Connection#PROPERTY_HIGH_DEF_AUDIO} is @hide, so define it here for now.
52 * {@link Connection#PROPERTY_WIFI} is @hide, so define it here for now.
57 Connection.CAPABILITY_HOLD | Connection.CAPABILITY_MUTE;
87 public Connection onCreateOutgoingConnection(
90 Connection connection = super.onCreateOutgoingConnection(
93 mConnection = (MockConnection) connection;
94 // Modify the connection object created with local values
    [all...]
  /external/libbrillo/brillo/http/
http_connection_fake.cc 18 Connection::Connection(const std::string& url,
21 : http::Connection(transport), request_(url, method) {
22 VLOG(1) << "fake::Connection created: " << method;
25 Connection::~Connection() {
26 VLOG(1) << "fake::Connection destroyed";
29 bool Connection::SendHeaders(const HeaderList& headers,
35 bool Connection::SetRequestData(StreamPtr stream,
41 bool Connection::FinishRequest(brillo::ErrorPtr* /* error */)
65 auto connection = std::static_pointer_cast<Connection>(shared_from_this()); local
    [all...]
http_connection_curl.cc 53 Connection::Connection(CURL* curl_handle,
57 : http::Connection(transport),
61 // Store the connection pointer inside the CURL handle so we can easily
64 VLOG(2) << "curl::Connection created: " << method_;
67 Connection::~Connection() {
71 VLOG(2) << "curl::Connection destroyed";
74 bool Connection::SendHeaders(const HeaderList& headers,
80 bool Connection::SetRequestData(StreamPtr stream
    [all...]
  /system/connectivity/shill/
mock_connection.cc 24 : Connection(0, std::string(), Technology::kUnknown, device_info,
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConference.java 20 import android.telecom.Connection;
38 Connection.CAPABILITY_SUPPORT_HOLD |
39 Connection.CAPABILITY_HOLD |
40 Connection.CAPABILITY_MUTE |
41 Connection.CAPABILITY_MANAGE_CONFERENCE);
46 * Invoked when the Conference and all it's {@link Connection}s should be disconnected.
50 for (Connection connection : getConnections()) {
51 if (disconnectCall(connection)) {
58 * Disconnect the underlying Telephony Call for a connection
110 final TelephonyConnection connection = getFirstConnection(); local
121 final TelephonyConnection connection = getFirstConnection(); local
129 final TelephonyConnection connection = getFirstConnection(); local
137 final TelephonyConnection connection = getFirstConnection(); local
    [all...]
TelephonyConferenceController.java 31 import android.telecom.Connection;
47 private final Connection.Listener mConnectionListener = new Connection.Listener() {
49 public void onStateChanged(Connection c, int state) {
50 Log.v(this, "onStateChange triggered in Conf Controller : connection = "+ c
57 public void onDisconnected(Connection c, DisconnectCause disconnectCause) {
62 public void onDestroyed(Connection connection) {
63 remove(connection);
77 /** The TelephonyConference connection object. *
    [all...]
ImsConference.java 25 import android.telecom.Connection.VideoProvider;
26 import android.telecom.Connection;
52 * An IMS conference call consists of a conference host connection and potentially a list of
53 * conference participants. The conference host connection represents the radio connection to the
54 * IMS conference server. Since it is not a connection to any one individual, it is not represented
56 * connection via a conference event package. Conference participant connections do not represent
61 * connection and is responsible for managing the conference participant connections which represent
70 private final Connection.Listener mParticipantListener = new Connection.Listener()
616 ConferenceParticipantConnection connection = local
626 ConferenceParticipantConnection connection = local
673 ConferenceParticipantConnection connection = new ConferenceParticipantConnection( local
683 mConferenceParticipantConnections.put(participant.getHandle(), connection); local
    [all...]
ImsConferenceController.java 24 import android.telecom.Connection;
55 * Ims conference controller connection listener. Used to respond to changes in state of the
58 private final Connection.Listener mConnectionListener = new Connection.Listener() {
60 public void onStateChanged(Connection c, int state) {
66 public void onDisconnected(Connection c, DisconnectCause disconnectCause) {
72 public void onDestroyed(Connection connection) {
73 remove(connection);
102 * @param connectionService The current connection service
222 Connection connection = (Connection) conferenceable; local
231 Connection connection = (Connection) conferenceable; local
289 TelephonyConnection connection = it.next(); local
    [all...]
CdmaConference.java 22 import android.telecom.Connection;
44 mProperties = Connection.PROPERTY_GENERIC_CONFERENCE;
49 capabilities |= Connection.CAPABILITY_MUTE;
54 * Invoked when the Conference and all it's {@link Connection}s should be disconnected.
70 public void onSeparate(Connection connection) {
91 mCapabilities &= ~Connection.CAPABILITY_MERGE_CONFERENCE;
94 mCapabilities |= Connection.CAPABILITY_SWAP_CONFERENCE;
102 final CdmaConnection connection = getFirstConnection(); local
103 if (connection != null)
112 final CdmaConnection connection = getFirstConnection(); local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Internal.java 20 import com.squareup.okhttp.Connection;
54 public abstract Transport newTransport(Connection connection, HttpEngine httpEngine)
57 public abstract boolean clearOwner(Connection connection);
59 public abstract void closeIfOwnedBy(Connection connection, Object owner) throws IOException;
61 public abstract int recycleCount(Connection connection);
63 public abstract void setProtocol(Connection connection, Protocol protocol)
    [all...]
  /frameworks/native/services/surfaceflinger/
EventThread.h 58 class Connection : public BnDisplayEventConnection {
60 Connection(const sp<EventThread>& eventThread);
69 virtual ~Connection();
82 sp<Connection> createEventConnection() const;
83 status_t registerDisplayEventConnection(const sp<Connection>& connection);
85 void setVsyncRate(uint32_t count, const sp<Connection>& connection);
86 void requestNextVsync(const sp<Connection>& connection);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Call.java 71 public ArrayList<Connection> mConnections = new ArrayList<Connection>();
79 public abstract List<Connection> getConnections();
88 * @param c a Connection object
89 * @return true if the call contains the connection object passed in
91 public boolean hasConnection(Connection c) {
100 List<Connection> connections = getConnections();
136 * Returns the Connection associated with this Call that was created
139 public Connection
141 List<Connection> l
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
HfpClientConference.java 23 import android.telecom.Connection;
43 setConnectionCapabilities(Connection.CAPABILITY_SUPPORT_HOLD |
44 Connection.CAPABILITY_HOLD |
45 (manage ? Connection.CAPABILITY_MANAGE_CONFERENCE : 0));
57 public void onMerge(Connection connection) {
58 Log.d(TAG, "onMerge " + connection);
59 addConnection(connection);
63 public void onSeparate(Connection connection) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCallBase.java 20 import com.android.internal.telephony.Connection;
27 public List<Connection> getConnections() {
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DummyConnectionService.java 20 import android.telecom.Connection;
30 * A simple connection service that hangs up automatically for incoming and outgoing call.
35 public Connection onCreateOutgoingConnection(PhoneAccountHandle connectionManagerPhoneAccount,
37 final DummyConnection connection = new DummyConnection(); local
38 connection.setAddress(request.getAddress(), TelecomManager.PRESENTATION_ALLOWED);
39 connection.setVideoState(request.getVideoState());
40 hangUpAsync(connection);
41 return connection;
45 public Connection onCreateIncomingConnection(PhoneAccountHandle connectionManagerPhoneAccount,
47 final DummyConnection connection = new DummyConnection() local
    [all...]
  /packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
CallTest.java 20 import android.telecom.Connection;
76 bundle.putString(Connection.EXTRA_CHILD_ADDRESS, "321");
77 bundle.putStringArrayList(Connection.EXTRA_LAST_FORWARDED_NUMBER,
79 bundle.putString(Connection.EXTRA_CALL_SUBJECT, "bar");
87 bundle.putString(Connection.EXTRA_CHILD_ADDRESS, CHILD_NUMBER);
88 bundle.putStringArrayList(Connection.EXTRA_LAST_FORWARDED_NUMBER,
90 bundle.putString(Connection.EXTRA_CALL_SUBJECT, CALL_SUBJECT);
  /frameworks/base/telecomm/java/android/telecom/
Conference.java 23 import android.telecom.Connection.VideoProvider;
35 * Represents a conference call which can contain any number of {@link Connection} objects.
40 * Used to indicate that the conference connection time is not specified. If not specified,
49 public void onConnectionAdded(Conference conference, Connection connection) {}
50 public void onConnectionRemoved(Conference conference, Connection connection) {}
52 Conference conference, List<Connection> conferenceableConnections) {}
59 public void onVideoProviderChanged(Conference c, Connection.VideoProvider videoProvider) {}
66 private final List<Connection> mChildConnections = new CopyOnWriteArrayList<>()
    [all...]

Completed in 729 milliseconds

1 2 3 4 5 6 7 8 91011>>