HomeSort by relevance Sort by last modified time
    Searched refs:Connection (Results 1 - 25 of 556) 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]
  /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...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionServiceProxy.java 20 import android.telecom.Connection;
30 Collection<Connection> getAllConnections();
33 void removeConnection(Connection connection);
35 Connection connection);
37 Connection connection, Conference conference);
38 void addConnectionToConferenceController(TelephonyConnection connection);
TelephonyConference.java 20 import android.telecom.Connection;
40 Connection.CAPABILITY_SUPPORT_HOLD |
41 Connection.CAPABILITY_HOLD |
42 Connection.CAPABILITY_MUTE |
43 Connection.CAPABILITY_MANAGE_CONFERENCE);
49 * Invoked when the Conference and all it's {@link Connection}s should be disconnected.
53 for (Connection connection : getConnections()) {
54 if (disconnectCall(connection)) {
61 * Disconnect the underlying Telephony Call for a connection
113 final TelephonyConnection connection = getFirstConnection(); local
124 final TelephonyConnection connection = getFirstConnection(); local
132 final TelephonyConnection connection = getFirstConnection(); local
140 final TelephonyConnection connection = getFirstConnection(); local
    [all...]
TelephonyConferenceController.java 32 import android.telecom.Connection;
48 private final Connection.Listener mConnectionListener = new Connection.Listener() {
50 public void onStateChanged(Connection c, int state) {
51 Log.v(this, "onStateChange triggered in Conf Controller : connection = "+ c
58 public void onDisconnected(Connection c, DisconnectCause disconnectCause) {
63 public void onDestroyed(Connection connection) {
64 remove(connection);
77 /** The TelephonyConference connection object. *
    [all...]
ImsConference.java 26 import android.telecom.Connection;
27 import android.telecom.Connection.VideoProvider;
56 * An IMS conference call consists of a conference host connection and potentially a list of
57 * conference participants. The conference host connection represents the radio connection to the
58 * IMS conference server. Since it is not a connection to any one individual, it is not represented
60 * connection via a conference event package. Conference participant connections do not represent
65 * connection and is responsible for managing the conference participant connections which represent
74 private final Connection.Listener mParticipantListener = new Connection.Listener()
690 ConferenceParticipantConnection connection = local
702 ConferenceParticipantConnection connection = local
752 ConferenceParticipantConnection connection = new ConferenceParticipantConnection( local
    [all...]
ImsConferenceController.java 21 import android.telecom.Connection;
57 * Ims conference controller connection listener. Used to respond to changes in state of the
60 private final Connection.Listener mConnectionListener = new Connection.Listener() {
62 public void onStateChanged(Connection c, int state) {
68 public void onDisconnected(Connection c, DisconnectCause disconnectCause) {
74 public void onDestroyed(Connection connection) {
75 remove(connection);
85 public void onConferenceSupportedChanged(Connection c, boolean isConferenceSupported)
325 TelephonyConnection connection = it.next(); local
    [all...]
  /system/bt/vendor_libs/test_vendor_lib/src/
connection.cc 17 #define LOG_TAG "connection"
19 #include "connection.h"
30 void Connection::AddAction(const TaskCallback& task) { actions_.push(task); }
32 // Model the quality of the downstream connection
33 void Connection::SendToDevice() {
42 void Connection::AddMessage(const vector<uint8_t>& data) {
46 // Model the quality of the upstream connection
47 bool Connection::ReceiveFromDevice(vector<uint8_t>& data) {
57 const std::string Connection::ToString() {
58 return "connection " + std::to_string(handle_) + " to " + dev_->ToString()
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
ConnectionTest.java 26 import android.telecom.Connection;
45 Connection connection = createConnection(lock); local
48 assertEquals(Connection.STATE_NEW, connection.getState());
50 connection.setInitializing();
52 assertEquals(Connection.STATE_INITIALIZING, connection.getState());
54 connection.setInitialized();
56 assertEquals(Connection.STATE_NEW, connection.getState())
96 Connection connection = Connection.createFailedConnection( local
115 Connection connection = Connection.createCanceledConnection(); local
132 Connection connection = createConnection(lock); local
147 Connection connection = createConnection(lock); local
162 Connection connection = createConnection(lock); local
179 Connection connection = createConnection(lock); local
195 Connection connection = createConnection(lock); local
214 Connection connection = createConnection(lock); local
228 Connection connection = createConnection(lock); local
255 Connection connection = createConnection(lock); local
282 Connection connection = createConnection(lock); local
310 Connection connection = createConnection(lock); local
339 Connection connection = createConnection(lock); local
351 Connection connection = createConnection(lock); local
367 Connection connection = createConnection(lock); local
382 Connection connection = createConnection(lock); local
436 BasicConnection connection = new BasicConnection(); local
    [all...]
MockConnectionService.java 20 import android.telecom.Connection;
56 * the {@link MockVideoProvider} is not created immediately when the Connection is created.
68 public Connection onCreateOutgoingConnection(PhoneAccountHandle connectionManagerPhoneAccount,
70 final MockConnection connection = new MockConnection(); local
71 connection.setAddress(request.getAddress(), CONNECTION_PRESENTATION);
72 connection.setPhoneAccountHandle(connectionManagerPhoneAccount);
73 connection.setConnectionCapabilities(Connection.CAPABILITY_SUPPORT_HOLD |
74 Connection.CAPABILITY_HOLD);
76 connection.createMockVideoProvider()
99 final MockConnection connection = new MockConnection(); local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/simulator/
SimulatorConnectionsBank.java 21 import android.telecom.Connection;
31 /** Add a connection into bank. */
32 void add(Connection connection);
34 /** Remove a connection from bank. */
35 void remove(Connection connection);
45 * connection). Before calling this method, make sure all connections are returned by
50 /** Determine whether a connection is created by simulator. */
51 boolean isSimulatorConnection(@NonNull Connection connection)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
HfpClientConference.java 21 import android.telecom.Connection;
38 Connection.CAPABILITY_SUPPORT_HOLD | Connection.CAPABILITY_HOLD | (manage
39 ? Connection.CAPABILITY_MANAGE_CONFERENCE : 0));
50 public void onMerge(Connection connection) {
51 Log.d(TAG, "onMerge " + connection);
52 addConnection(connection);
56 public void onSeparate(Connection connection) {
    [all...]
  /hardware/google/av/codec2/vndk/bufferpool/
Connection.cpp 17 #include "Connection.h"
27 Return<void> Connection::fetch(uint64_t transactionId, uint32_t bufferId, fetch_cb _hidl_cb) {
42 Connection::Connection() : mInitialized(false), mConnectionId(-1LL) {}
44 Connection::~Connection() {
50 void Connection::initialize(
59 ResultStatus Connection::allocate(
68 void Connection::cleanUp(bool clearCache) {
77 // return new 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...]
  /external/libbrillo/brillo/http/
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...]
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...]
  /external/python/cpython2/Doc/includes/sqlite3/
countcursors.py 3 class CountCursorsConnection(sqlite3.Connection):
5 sqlite3.Connection.__init__(self, *args, **kwargs)
10 return sqlite3.Connection.cursor(self, *args, **kwargs)
  /external/python/cpython3/Doc/includes/sqlite3/
countcursors.py 3 class CountCursorsConnection(sqlite3.Connection):
5 sqlite3.Connection.__init__(self, *args, **kwargs)
10 return sqlite3.Connection.cursor(self, *args, **kwargs)
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Connection.java 22 * The sockets and streams of an HTTP, HTTPS, or HTTPS+SPDY connection. May be used for multiple
27 * {@linkplain ConnectionPool connection pool}.
30 * connection as a single request/response exchange.
33 * There are tradeoffs when selecting which options to include when negotiating a secure connection
42 * avoiding these options entirely, this class allows a connection to be attempted with modern
45 * <h3>Connection Reuse</h3>
46 * <p>Each connection can carry a varying number streams, depending on the underlying protocol being
49 * connection currently carrying zero streams is an idle stream. We keep it alive because reusing an
50 * existing connection is typically faster than establishing a new one.
53 * challenges, we prefer to use the same physical connection for all streams in the sequence. Ther
    [all...]
  /hardware/interfaces/graphics/composer/2.1/
IComposerCallback.hal 20 enum Connection : int32_t {
48 onHotplug(Display display, Connection connected);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCallBase.java 20 import com.android.internal.telephony.Connection;
27 public List<Connection> getConnections() {
  /packages/services/Telecomm/src/com/android/server/telecom/
ParcelableCallUtils.java 20 import android.telecom.Connection;
246 Connection.CAPABILITY_HOLD,
249 Connection.CAPABILITY_SUPPORT_HOLD,
252 Connection.CAPABILITY_MERGE_CONFERENCE,
255 Connection.CAPABILITY_SWAP_CONFERENCE,
258 Connection.CAPABILITY_RESPOND_VIA_TEXT,
261 Connection.CAPABILITY_MUTE,
264 Connection.CAPABILITY_MANAGE_CONFERENCE,
267 Connection.CAPABILITY_SUPPORTS_VT_LOCAL_RX,
270 Connection.CAPABILITY_SUPPORTS_VT_LOCAL_TX
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorConference.java 22 import android.telecom.Connection;
33 * conference object and add it to the connection service. All operations such as hold and DTMF are
54 Connection.CAPABILITY_MUTE
55 | Connection.CAPABILITY_SUPPORT_HOLD
56 | Connection.CAPABILITY_HOLD
57 | Connection.CAPABILITY_MANAGE_CONFERENCE);
65 Connection.CAPABILITY_MUTE
66 | Connection.CAPABILITY_SUPPORT_HOLD
67 | Connection.CAPABILITY_HOLD
68 | Connection.CAPABILITY_MANAGE_CONFERENCE)
    [all...]

Completed in 643 milliseconds

1 2 3 4 5 6 7 8 91011>>