HomeSort by relevance Sort by last modified time
    Searched refs:Connection (Results 151 - 175 of 646) sorted by null

1 2 3 4 5 67 8 91011>>

  /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}.
49 android.telecom.Connection.VideoProvider videoProvider);
66 android.telecom.Connection.VideoProvider videoProvider) {}
96 protected long mHoldingStartTime; // The time when the Connection last transitioned
98 protected Connection mOrigConnection;
105 private static String LOG_TAG = "Connection";
112 private android.telecom.Connection.VideoProvider mVideoProvider;
118 * Gets address (e.g. phone number) associated with connection
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCall.java 23 import com.android.internal.telephony.Connection;
46 public List<Connection>
82 attach(Connection conn, DriverCall dc) {
89 attachFake(Connection conn, State state) {
176 * Called when it's time to clean up disconnected Connection objects
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCall.java 21 import com.android.internal.telephony.Connection;
47 public List<Connection>
84 attach(Connection conn, DriverCall dc) {
91 attachFake(Connection conn, State state) {
179 * Called when it's time to clean up disconnected Connection objects
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/public/
NetlinkServer.h 5 * Connection server.
57 * @param connectionHanler Connection handler to pass incoming connections to.
80 * Remove a connection object from the list of available connections.
82 * data from TLCs to the driver. If the function succeeds, freeing the connection will no longer
85 * @param connection The connection object to remove.
88 Connection *connection
94 * It routes the incomming packet to the apropriate connection based on the packet's
104 * Retreive connection based on hash
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
fullstream_ui_policy.h 68 virtual bool InitDatabase(sql::Connection* db) OVERRIDE;
69 virtual bool FlushDatabase(sql::Connection* db) OVERRIDE;
  /external/chromium_org/chrome/browser/history/
download_database.h 17 class Connection;
53 virtual sql::Connection& GetDB() = 0;
  /external/chromium_org/ppapi/proxy/
media_stream_video_track_resource.h 24 MediaStreamVideoTrackResource(Connection connection,
29 MediaStreamVideoTrackResource(Connection connection, PP_Instance instance);
tcp_socket_private_resource.h 21 TCPSocketPrivateResource(Connection connection, PP_Instance instance);
24 TCPSocketPrivateResource(Connection connection,
tcp_socket_resource.h 23 TCPSocketResource(Connection connection,
62 TCPSocketResource(Connection connection,
  /external/chromium_org/sql/
sqlite_features_unittest.cc 10 #include "sql/connection.h"
47 sql::Connection& db() { return db_; }
51 sql::Connection db_;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portproxy.h 65 virtual Connection* CreateConnection(const Candidate& remote_candidate,
67 virtual Connection* GetConnection(
port.cc 101 // use a large value just in case the connection is really slow.
115 // Used by the Connection.
235 std::vector<Connection*> list;
247 Connection* Port::GetConnection(const rtc::SocketAddress& remote_addr) {
291 void Port::AddConnection(Connection* conn) {
326 // pruned a connection for this port while it had STUN requests in flight,
654 // The fact that we received a successful request means that this connection
656 Connection* conn = GetConnection(addr);
726 void Port::OnConnectionDestroyed(Connection* conn) {
733 // fail. Note: If a new connection is added after this message is posted
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
NullDatabaseMapTest.java 10 import java.sql.Connection;
42 Connection connection = null; local
47 connection = DatabaseConfig.getMemoryConnection();
49 //since the connection should not actually be made
56 Assert.assertTrue(connection == null);
  /external/smack/src/org/jivesoftware/smackx/
SharedGroupManager.java 22 import org.jivesoftware.smack.Connection;
46 * @param connection connection to use to get the user's shared groups.
49 public static List<String> getSharedGroups(Connection connection) throws XMPPException {
56 connection.createPacketCollector(new PacketIDFilter(info.getPacketID()));
58 connection.sendPacket(info);
ChatStateManager.java 37 * Handles chat state for all chats on a particular Connection. This class manages both the
41 * NOTE: {@link org.jivesoftware.smackx.ChatStateManager#getInstance(org.jivesoftware.smack.Connection)}
42 * needs to be called in order for the listeners to be registered appropriately with the connection.
51 private static final Map<Connection, ChatStateManager> managers =
52 new WeakHashMap<Connection, ChatStateManager>();
58 * Returns the ChatStateManager related to the Connection and it will create one if it does
61 * @param connection the connection to return the ChatStateManager
62 * @return the ChatStateManager related the the connection.
64 public static ChatStateManager getInstance(final Connection connection)
80 private final Connection connection; field in class:ChatStateManager
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamRequest.java 16 import org.jivesoftware.smack.Connection;
33 * In-Band Bytestream manager containing the XMPP connection and helper
70 Connection connection = this.manager.getConnection(); local
73 InBandBytestreamSession ibbSession = new InBandBytestreamSession(connection,
79 connection.sendPacket(resultIQ);
  /external/smack/src/org/jivesoftware/smackx/ping/
PingManager.java 29 import org.jivesoftware.smack.Connection;
63 private static Map<Connection, PingManager> instances =
64 Collections.synchronizedMap(new WeakHashMap<Connection, PingManager>());
67 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
68 public void connectionCreated(Connection connection) {
69 new PingManager(connection);
75 private Connection connection; field in class:PingManager
91 private PingManager(Connection connection)
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
Session.h 37 #include "Connection.h"
101 Connection *notificationConnection;
103 Session(uint32_t sessionId, CMcKMod *mcKMod, Connection *connection);
  /libcore/luni/src/test/java/libcore/java/sql/
OldSQLTest.java 20 import java.sql.Connection;
28 static Connection conn;
49 assertNotNull("Connection created ", conn);
  /libcore/luni/src/test/java/libcore/javax/sql/
OldConnectionEventTest.java 20 import java.sql.Connection;
54 public Connection getConnection() throws SQLException {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
py25tests.py 30 class MyConnection(sqlite.Connection):
34 sqlite.Connection.rollback(self)
47 """Can the connection be used as a context manager at all?"""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
py25tests.py 30 class MyConnection(sqlite.Connection):
34 sqlite.Connection.rollback(self)
47 """Can the connection be used as a context manager at all?"""
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/selfbraille/
SelfBrailleClient.java 85 private volatile Connection mConnection;
124 Connection localConnection = new Connection();
151 Connection localConnection = mConnection;
193 private class Connection implements ServiceConnection {
202 + "for %s, dropping connection",
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/
TranslatorManager.java 81 private Connection mConnection;
126 Connection localConnection = new Connection();
145 Connection localConnection = mConnection;
152 private class Connection implements ServiceConnection {
  /external/smack/src/org/jivesoftware/smackx/bookmark/
BookmarkManager.java 22 import org.jivesoftware.smack.Connection;
39 private static final Map<Connection, BookmarkManager> bookmarkManagerMap = new HashMap<Connection, BookmarkManager>();
46 * Returns the <i>BookmarkManager</i> for a connection, if it doesn't exist it is created.
48 * @param connection the connection for which the manager is desired.
49 * @return Returns the <i>BookmarkManager</i> for a connection, if it doesn't
51 * @throws XMPPException Thrown if the connection is null or has not yet been authenticated.
53 public synchronized static BookmarkManager getBookmarkManager(Connection connection)
    [all...]

Completed in 3420 milliseconds

1 2 3 4 5 67 8 91011>>