HomeSort by relevance Sort by last modified time
    Searched refs:Connection (Results 176 - 200 of 622) sorted by null

1 2 3 4 5 6 78 91011>>

  /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 {
  /libcore/luni/src/test/java/libcore/sqlite/
OldJDBCDriverTest.java 20 import java.sql.Connection;
64 Connection c = jDriver.connect(getConnectionURL(), null);
  /packages/services/Telephony/src/com/android/phone/
CallLogger.java 20 import com.android.internal.telephony.Connection;
51 * Logs a call to the call log based on the connection object passed in.
53 * @param c The connection object for the call being logged.
56 public void logCall(Connection c, int callLogType) {
71 // the connection for the CNAP. Should we use the one
87 * Came as logCall(Connection,int) but calculates the call type from the connection object.
89 public void logCall(Connection c) {
90 final Connection.DisconnectCause cause = c.getDisconnectCause();
96 callLogType = (cause == Connection.DisconnectCause.INCOMING_MISSED
    [all...]
CallNotifier.java 23 import com.android.internal.telephony.Connection;
279 onCustomRingtoneQueryTimeout((Connection) msg.obj);
372 * Handles a "new ringing connection" event from the telephony layer.
375 Connection c = (Connection) r.result;
391 Log.i(LOG_TAG, "CallNotifier.onNewRingingConnection(): connection not ringing!");
405 if (VDBG) log("- connection is ringing! state = " + state);
415 // the caller-id info for the current connection, and say whether
434 if (VDBG) log("Holding wake lock on new incoming connection.");
527 private void startIncomingCallQuery(Connection c)
    [all...]
  /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/okhttp/src/test/java/com/squareup/okhttp/
ConnectionPoolTest.java 64 private Connection httpA;
65 private Connection httpB;
66 private Connection httpC;
67 private Connection httpD;
68 private Connection httpE;
69 private Connection spdyA;
70 private Connection spdyB;
88 httpA = new Connection(httpRoute);
90 httpB = new Connection(httpRoute);
92 httpC = new Connection(httpRoute)
119 Connection connection = pool.get(httpAddress); local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
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...]
RosterExchangeManager.java 31 import org.jivesoftware.smack.Connection;
51 private Connection con;
59 * @param con a Connection which is used to send and receive messages.
61 public RosterExchangeManager(Connection con) {
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 66 ("Metadata-Key", "connection"),
68 ("Connection-Description", "Barry's Big Bass Business"),
69 ("Connection-Id", "B4"),
70 ("Connection-Direction", "client"),
77 ("Connection-Description", "Generic Interface for All Knowbots"),
78 ("Connection-Id", "generic-kp"),
79 ("Connection-Direction", "client"),
115 KP-Metadata-Key: connection
117 KP-Connection-Description: Barry's Big Bass Business
118 KP-Connection-Id: B
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 66 ("Metadata-Key", "connection"),
68 ("Connection-Description", "Barry's Big Bass Business"),
69 ("Connection-Id", "B4"),
70 ("Connection-Direction", "client"),
77 ("Connection-Description", "Generic Interface for All Knowbots"),
78 ("Connection-Id", "generic-kp"),
79 ("Connection-Direction", "client"),
115 KP-Metadata-Key: connection
117 KP-Connection-Description: Barry's Big Bass Business
118 KP-Connection-Id: B
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 37 import com.android.internal.telephony.Connection;
181 public Connection dial(String dialString) throws CallStateException {
187 private Connection dialInternal(String dialString)
205 Connection c = mForegroundCall.dial(dialString);
407 slog("illegal connection state: " + sessionState);
453 for (Connection c : mConnections) {
464 public List<Connection> getConnections() {
472 Connection dial(String originalNumber) throws SipException {
503 for (Connection c : mConnections) {
577 for (Connection c : mConnections) ((SipConnection) c).hold()
    [all...]
  /external/smack/src/org/jivesoftware/smack/
PrivacyListManager.java 46 private static Map<Connection, PrivacyListManager> instances = Collections
47 .synchronizedMap(new WeakHashMap<Connection, PrivacyListManager>());
49 private Connection connection; field in class:PrivacyListManager
55 // Create a new PrivacyListManager on every established connection. In the init()
57 // instance when the connection is closed.
58 Connection.addConnectionCreationListener(new ConnectionCreationListener() {
59 public void connectionCreated(Connection connection) {
60 new PrivacyListManager(connection);
    [all...]
  /external/chromium/app/sql/
statement_unittest.cc 7 #include "app/sql/connection.h"
18 virtual int OnError(int error, sql::Connection* connection,
60 sql::Connection& db() { return db_; }
67 sql::Connection db_;
  /external/chromium_org/chrome/browser/predictors/
predictor_database.cc 20 #include "sql/connection.h"
57 scoped_ptr<sql::Connection> db_;
71 db_(new sql::Connection()),
82 // The connection pointer needs to be deleted on the DB thread since there
83 // might be a task in progress on the DB thread which uses this connection.
154 sql::Connection* PredictorDatabase::GetDatabase() {
  /external/llvm/include/llvm/CodeGen/
ScheduleDFS.h 94 /// \brief Record a connection between subtrees and the connection level.
95 struct Connection {
99 Connection(unsigned tree, unsigned level): TreeID(tree), Level(level) {}
112 std::vector<SmallVector<Connection, 4> > SubtreeConnections;
114 /// Cache the current connection level of each subtree.
179 /// \brief Get the connection level of a subtree.
181 /// For bottom-up trees, the connection level is the latency depth (in cycles)
182 /// of the deepest connection to another subtree.
  /external/smack/src/org/jivesoftware/smackx/commands/
RemoteCommand.java 25 import org.jivesoftware.smack.Connection;
50 * The connection that is used to execute this command
52 private Connection connection; field in class:RemoteCommand
72 * Creates a new RemoteCommand that uses an specific connection to execute a
76 * @param connection the connection to use for the execution.
80 protected RemoteCommand(Connection connection, String node, String jid) {
82 this.connection = connection
    [all...]
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransferManager.java 23 import org.jivesoftware.smack.Connection;
54 private Connection connection; field in class:FileTransferManager
59 * @param connection
60 * The Connection that the file transfers will use.
62 public FileTransferManager(Connection connection) {
63 this.connection = connection;
65 .getInstanceFor(connection);
    [all...]
IBBTransferNegotiator.java 25 import org.jivesoftware.smack.Connection;
51 private Connection connection; field in class:IBBTransferNegotiator
58 * @param connection The connection which this negotiator works on.
60 protected IBBTransferNegotiator(Connection connection) {
61 this.connection = connection;
62 this.manager = InBandBytestreamManager.getByteStreamManager(connection);
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
Offer.java 22 import org.jivesoftware.smack.Connection;
40 private Connection connection; field in class:Offer
57 * @param conn the XMPP connection with which the issuing session was created.
68 Offer(Connection conn, AgentSession agentSession, String userID,
72 this.connection = conn;
88 connection.sendPacket(acceptPacket);
98 connection.sendPacket(rejectPacket);

Completed in 1263 milliseconds

1 2 3 4 5 6 78 91011>>