OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImConnection
(Results
1 - 13
of
13
) sorted by null
/packages/apps/IM/src/com/android/im/service/
ImConnectionAdapter.java
41
import com.android.im.engine.
ImConnection
;
61
ImConnection
mConnection;
77
int mConnectionState =
ImConnection
.DISCONNECTED;
79
public ImConnectionAdapter(long providerId,
ImConnection
connection,
86
if ((connection.getCapability() &
ImConnection
.CAPABILITY_GROUP_CHAT) != 0) {
93
public
ImConnection
getAdaptee() {
118
mConnectionState =
ImConnection
.LOGGING_IN;
121
if ((mConnection.getCapability() &
ImConnection
.CAPABILITY_SESSION_REESTABLISHMENT) != 0) {
147
mConnectionState =
ImConnection
.LOGGING_IN;
175
mConnectionState =
ImConnection
.LOGGING_OUT
[
all
...]
ChatSessionManagerAdapter.java
38
import com.android.im.engine.
ImConnection
;
54
ImConnection
connAdaptee = connection.getAdaptee();
60
if((connAdaptee.getCapability() &
ImConnection
.CAPABILITY_GROUP_CHAT) != 0) {
RemoteImService.java
57
import com.android.im.engine.
ImConnection
;
261
ImConnection
conn = factory.createConnection(config);
356
if (connState ==
ImConnection
.SUSPENDED) {
364
if (conn.getState() !=
ImConnection
.LOGGED_IN) {
ChatSessionAdapter.java
28
import com.android.im.engine.
ImConnection
;
230
if (mConnection.getState() ==
ImConnection
.SUSPENDED) {
/packages/apps/IM/src/com/android/im/engine/
ConnectionFactory.java
24
* The factory used to create an instance of
ImConnection
.
45
* Creates a new
ImConnection
.
47
* @return the new
ImConnection
.
50
public
ImConnection
createConnection(ConnectionConfig config) throws ImException {
ImConnection.java
24
* An <code>
ImConnection
</code> is an abstract representation of a connection
27
public abstract class
ImConnection
{
75
protected
ImConnection
() {
ContactListManager.java
448
if (getConnection().getState() !=
ImConnection
.LOGGED_IN) {
469
protected abstract
ImConnection
getConnection();
/packages/apps/IM/src/com/android/im/app/
ImUrlActivity.java
22
import com.android.im.engine.
ImConnection
;
103
if (state <
ImConnection
.LOGGED_IN) {
105
} else if (state ==
ImConnection
.LOGGED_IN || state ==
ImConnection
.SUSPENDED) {
SigningInActivity.java
25
import com.android.im.engine.
ImConnection
;
171
if (state !=
ImConnection
.LOGGING_IN) {
247
if (mConn.getState() ==
ImConnection
.LOGGING_IN) {
297
if (state ==
ImConnection
.LOGGED_IN) {
326
} else if (state ==
ImConnection
.DISCONNECTED) {
ImApp.java
53
import com.android.im.engine.
ImConnection
;
651
case
ImConnection
.LOGGED_IN:
655
case
ImConnection
.LOGGING_IN:
659
case
ImConnection
.LOGGING_OUT:
666
case
ImConnection
.DISCONNECTED:
675
case
ImConnection
.SUSPENDED:
ChatView.java
83
import com.android.im.engine.
ImConnection
;
934
: conn.getState() !=
ImConnection
.SUSPENDED;
[
all
...]
/packages/apps/IM/src/com/android/im/imps/
ImpsConnection.java
28
import com.android.im.engine.
ImConnection
;
38
* An implementation of
ImConnection
of Wireless Village IMPS protocol.
40
public class ImpsConnection extends
ImConnection
{
ImpsContactListManager.java
29
import com.android.im.engine.
ImConnection
;
[
all
...]
Completed in 441 milliseconds