/cts/tests/tests/telecom/src/android/telecom/cts/ |
MockConnectionService.java | 19 import android.telecom.Connection; 42 * the {@link MockVideoProvider} is not created immediately when the Connection is created. 54 public Connection onCreateOutgoingConnection(PhoneAccountHandle connectionManagerPhoneAccount, 56 final MockConnection connection = new MockConnection(); local 57 connection.setAddress(request.getAddress(), CONNECTION_PRESENTATION); 58 connection.setPhoneAccountHandle(connectionManagerPhoneAccount); 60 connection.createMockVideoProvider(); 64 connection.setVideoState(request.getVideoState()); 65 connection.setInitializing(); 67 outgoingConnections.add(connection); 75 final MockConnection connection = new MockConnection(); local [all...] |
WiredHeadsetTest.java | 21 import android.telecom.Connection; 44 final MockConnection connection = verifyConnectionForIncomingCall(); local 48 assertConnectionState(connection, Connection.STATE_RINGING); 52 assertConnectionState(connection, Connection.STATE_ACTIVE); 61 final MockConnection connection = verifyConnectionForIncomingCall(); local 65 assertConnectionState(connection, Connection.STATE_RINGING); 69 assertConnectionState(connection, Connection.STATE_DISCONNECTED) 78 final MockConnection connection = verifyConnectionForOutgoingCall(); local 100 final MockConnection connection = verifyConnectionForOutgoingCall(); local [all...] |
RemoteConferenceTest.java | 25 import android.telecom.Connection; 51 public static final int CONF_CAPABILITIES = Connection.CAPABILITY_SEPARATE_FROM_CONFERENCE | 52 Connection.CAPABILITY_DISCONNECT_FROM_CONFERENCE | Connection.CAPABILITY_HOLD | 53 Connection.CAPABILITY_MERGE_CONFERENCE | Connection.CAPABILITY_SWAP_CONFERENCE; 84 assertConnectionState(mConnection1, Connection.STATE_ACTIVE); 85 assertConnectionState(mConnection2, Connection.STATE_ACTIVE); 86 assertConnectionState(mRemoteConnection1, Connection.STATE_ACTIVE); 87 assertConnectionState(mRemoteConnection2, Connection.STATE_ACTIVE) [all...] |
/external/libbrillo/brillo/http/ |
http_connection.h | 25 // Connection class is the base class for HTTP communication session. 27 // When the Connection-derived class is constructed, it is pre-set up with 29 // connection (such as the URL, request method, etc - see 31 // would not probably initiate the physical connection until SendHeaders 38 // the connection to the destination URI and is shared between the request and 40 // is received. The class does NOT represent a persistent TCP connection though 43 class BRILLO_EXPORT Connection 44 : public std::enable_shared_from_this<Connection> { 46 explicit Connection(const std::shared_ptr<Transport>& transport) 48 virtual ~Connection() = default [all...] |
http_connection_fake.h | 20 // This is a fake implementation of http::Connection for unit testing. 21 class Connection : public http::Connection { 23 Connection(const std::string& url, 26 ~Connection() override; 28 // Overrides from http::Connection. 55 DISALLOW_COPY_AND_ASSIGN(Connection);
|
mock_transport.h | 23 std::shared_ptr<Connection>(const std::string&, 31 MOCK_METHOD3(StartAsyncTransfer, RequestID(Connection*,
|
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/ |
connection.py | 2 # Analogue of `multiprocessing.connection` which uses queues instead of sockets 4 # multiprocessing/dummy/connection.py 49 return Connection(*self._backlog_queue.get()) 60 return Connection(_in, _out) 65 return Connection(a, b), Connection(b, a) 68 class Connection(object):
|
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/ |
connection.py | 2 # Analogue of `multiprocessing.connection` which uses queues instead of sockets 4 # multiprocessing/dummy/connection.py 49 return Connection(*self._backlog_queue.get()) 60 return Connection(_in, _out) 65 return Connection(a, b), Connection(b, a) 68 class Connection(object):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
connection.py | 2 # Analogue of `multiprocessing.connection` which uses queues instead of sockets 4 # multiprocessing/dummy/connection.py 49 return Connection(*self._backlog_queue.get()) 60 return Connection(_in, _out) 65 return Connection(a, b), Connection(b, a) 68 class Connection(object):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
connection.py | 2 # Analogue of `multiprocessing.connection` which uses queues instead of sockets 4 # multiprocessing/dummy/connection.py 49 return Connection(*self._backlog_queue.get()) 60 return Connection(_in, _out) 65 return Connection(a, b), Connection(b, a) 68 class Connection(object):
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
ParcelableCallUtils.java | 20 import android.telecom.Connection; 187 Connection.CAPABILITY_HOLD, 190 Connection.CAPABILITY_SUPPORT_HOLD, 193 Connection.CAPABILITY_MERGE_CONFERENCE, 196 Connection.CAPABILITY_SWAP_CONFERENCE, 199 Connection.CAPABILITY_RESPOND_VIA_TEXT, 202 Connection.CAPABILITY_MUTE, 205 Connection.CAPABILITY_MANAGE_CONFERENCE, 208 Connection.CAPABILITY_SUPPORTS_VT_LOCAL_RX, 211 Connection.CAPABILITY_SUPPORTS_VT_LOCAL_TX [all...] |
/external/webrtc/webrtc/base/ |
httpserver.cc | 48 Connection* connection = new Connection(connection_id, this); local 49 connections_.insert(ConnectionMap::value_type(connection_id, connection)); 50 connection->BeginProcess(stream); 57 if (Connection* connection = Find(connection_id)) { 58 connection->Respond(transaction); 62 // connection still exists. 68 if (Connection* connection = Find(connection_id)) 106 Connection* connection = it->second; local [all...] |
httpserver.h | 69 // Stop processing the connection indicated by connection_id. 80 class Connection : private IHttpNotify { 82 Connection(int connection_id, HttpServer* server); 83 ~Connection() override; 103 Connection* Find(int connection_id); 106 friend class Connection; 107 typedef std::map<int,Connection*> ConnectionMap;
|
/external/webrtc/webrtc/p2p/base/ |
p2ptransportchannel.h | 11 // P2PTransportChannel wraps up the state management of the connection between 15 // Bob are used to make a connection, repeat to make many connections). 63 // P2PTransportChannel manages the candidates and connection process to keep 105 const Connection* best_connection() const { return best_connection_; } 171 Connection* FindNextPingableConnection(); 174 const std::vector<Connection*>& connections() const { return connections_; } 190 // A transport channel is weak if the current best connection is either 191 // not receiving or not writable, or if there is no best connection at all. 196 void SwitchBestConnectionTo(Connection* conn); 202 Connection* GetBestConnectionOnNetwork(rtc::Network* network) const [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ |
Impl_PooledConnection.java | 20 import java.sql.Connection; 33 public Connection getConnection() throws SQLException {
|
/packages/services/Telephony/src/com/android/services/telephony/ |
CdmaConferenceController.java | 22 import android.telecom.Connection; 38 * say that we are in a conference call with {@link Connection#PROPERTY_GENERIC_CONFERENCE}. 51 private final Connection.Listener mConnectionListener = new Connection.Listener() { 53 public void onStateChanged(Connection c, int state) { 58 public void onDisconnected(Connection c, DisconnectCause disconnectCause) { 63 public void onDestroyed(Connection c) { 89 /** The CDMA conference connection object. */ 92 void add(final CdmaConnection connection) { 93 if (!mCdmaConnections.isEmpty() && connection.isOutgoing()) [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
ConnectionPool.java | 34 * {@link com.squareup.okhttp.Connection}. This class implements the policy of 45 * connection alive in the pool before closing it. Default is 5 minutes. 78 private final LinkedList<Connection> connections = new LinkedList<>(); 82 * thread running per connection pool. 89 * the thread, and thus the connection pool, in memory. 124 for (Connection connection : connections) { 125 if (connection.isFramed()) total++; 135 /** Returns a recycled connection to {@code address}, or null if no such connection exists. * 140 Connection connection = i.previous(); local 278 Connection connection = i.previous(); local 292 Connection connection = i.previous(); local [all...] |
Interceptor.java | 31 Connection connection(); method in interface:Interceptor.Chain
|
/frameworks/native/services/surfaceflinger/ |
EventThread.cpp | 97 sp<EventThread::Connection> EventThread::createEventConnection() const { 98 return new Connection(const_cast<EventThread*>(this)); 102 const sp<EventThread::Connection>& connection) { 104 mDisplayEventConnections.add(connection); 110 const wp<EventThread::Connection>& connection) { 112 mDisplayEventConnections.remove(connection); 116 const sp<EventThread::Connection>& connection) { 377 sp<Connection> connection = local [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
ContextMap.java | 45 * Connection class helps map connection IDs to device addresses. 47 class Connection { 53 Connection(int connId, String address,int appId) { 143 Set<Connection> mConnections = new HashSet<Connection>(); 203 * Add a new connection for a given application ID. 209 mConnections.add(new Connection(connId, address, id)); 215 * Remove a connection with the given ID. 219 Iterator<Connection> i = mConnections.iterator() 221 Connection connection = i.next(); local 294 Connection connection = i.next(); local 306 Connection connection = ii.next(); local 323 Connection connection = i.next(); local 336 Connection connection = i.next(); local 346 Connection connection = i.next(); local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/file/ |
__init__.py | 19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 24 from boto.file.connection import FileConnection as Connection 28 __all__ = ['Connection', 'Key', 'Bucket']
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
WebSocketConnection.java | 33 WebSocket.Connection getConnection();
|
/libcore/ojluni/src/main/java/java/sql/ |
Driver.java | 38 * find and then for any given connection request, it will ask each 53 * @see Connection 58 * Attempts to make a database connection to the given URL. 69 * arbitrary string tag/value pairs as connection arguments. 75 * connection arguments. Normally at least a "user" and 77 * @return a <code>Connection</code> object that represents a 78 * connection to the URL 81 Connection connect(String url, java.util.Properties info) 85 * Retrieves whether the driver thinks that it can open a connection
|
/libcore/ojluni/src/main/java/javax/sql/ |
RowSetInternal.java | 53 * Retrieves the <code>Connection</code> object that was passed to this 56 * @return the <code>Connection</code> object passed to the rowset 60 Connection getConnection() throws SQLException;
|
/system/connectivity/shill/ |
mock_active_link_monitor.h | 27 class Connection;
|