Home
last modified time | relevance | path

Searched refs:TransportType (Results 1 – 5 of 5) sorted by relevance

/packages/apps/IM/src/com/android/im/imps/
DImpsClientCapability.java21 import com.android.im.imps.ImpsConnectionConfig.TransportType;
112 public static TransportType[] getSupportedBearers() { in getSupportedBearers()
113 return new TransportType[] { in getSupportedBearers()
114 TransportType.HTTP in getSupportedBearers()
DImpsConnectionConfig.java47 private TransportType mDataChannelBinding = TransportType.HTTP;
83 mDataChannelBinding = TransportType.valueOf(dataChannel); in ImpsConnectionConfig()
86 mDataChannelBinding = TransportType.HTTP; in ImpsConnectionConfig()
204 public TransportType getDataChannelBinding() { in getDataChannelBinding()
419 public static enum TransportType { enum in ImpsConnectionConfig
DImpsConnection.java34 import com.android.im.imps.ImpsConnectionConfig.TransportType;
312 && mConfig.getDataChannelBinding() != TransportType.SMS) { in onAuthenticated()
486 TransportType dataChannelBinding = mConfig.getDataChannelBinding(); in createDataChannel()
487 if (dataChannelBinding == TransportType.HTTP) { in createDataChannel()
489 } else if (dataChannelBinding == TransportType.SMS) { in createDataChannel()
497 if(mConfig.getDataChannelBinding() == TransportType.SMS) { in setupCIRChannel()
DImpsSession.java29 import com.android.im.imps.ImpsConnectionConfig.TransportType;
367 for(TransportType supportedBear : ImpsClientCapability.getSupportedBearers()) { in buildCapabilityRequest()
/packages/apps/IM/src/com/android/im/app/
DPreferenceActivity.java36 import com.android.im.imps.ImpsConnectionConfig.TransportType;
73 TransportType.HTTP.name()); in onCreate()
74 if (TransportType.HTTP.name().equals(dataChannel)) { in onCreate()
76 } else if (TransportType.SMS.name().equals(dataChannel)) { in onCreate()
140 TransportType dataChannel; in savePreferences()
143 dataChannel = TransportType.HTTP; in savePreferences()
146 dataChannel = TransportType.SMS; in savePreferences()
150 dataChannel = TransportType.HTTP; in savePreferences()