OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ImsCallProfile
(Results
1 - 4
of
4
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsExternalCallTracker.java
19
import com.android.ims.
ImsCallProfile
;
173
connection.setVideoState(
ImsCallProfile
.getVideoStateFromCallType(state.getCallType()));
212
int newVideoState =
ImsCallProfile
.getVideoStateFromCallType(state.getCallType());
ImsPhoneCallTracker.java
52
import com.android.ims.
ImsCallProfile
;
114
mUssdSession.accept(
ImsCallProfile
.CALL_TYPE_VOICE);
488
ImsCallProfile
.SERVICE_TYPE_EMERGENCY :
ImsCallProfile
.SERVICE_TYPE_NORMAL;
489
int callType =
ImsCallProfile
.getCallTypeFromVideoState(videoState);
495
ImsCallProfile
profile = mImsManager.createCallProfile(mServiceId,
497
profile.setCallExtraInt(
ImsCallProfile
.EXTRA_OIR, clirMode);
500
//
ImsCallProfile
key.
503
intentExtras.putString(
ImsCallProfile
.EXTRA_DISPLAY_TEXT,
510
profile.mCallExtras.putBundle(
ImsCallProfile
.EXTRA_OEM_EXTRAS, intentExtras)
[
all
...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneConnectionTest.java
29
import com.android.ims.
ImsCallProfile
;
162
doReturn(
ImsCallProfile
.OIR_PRESENTATION_PAYPHONE).when(mImsCallProfile)
163
.getCallExtraInt(eq(
ImsCallProfile
.EXTRA_CNAP));
164
doReturn(
ImsCallProfile
.OIR_PRESENTATION_NOT_RESTRICTED).when(mImsCallProfile)
165
.getCallExtraInt(eq(
ImsCallProfile
.EXTRA_OIR));
168
assertEquals(
ImsCallProfile
.OIRToPresentation(
ImsCallProfile
.OIR_PRESENTATION_PAYPHONE),
170
assertEquals(
ImsCallProfile
.OIRToPresentation(
171
ImsCallProfile
.OIR_PRESENTATION_NOT_RESTRICTED),
245
mBundle.putString(
ImsCallProfile
.EXTRA_CALL_RAT_TYPE
[
all
...]
/frameworks/base/telephony/java/com/android/ims/
ImsCallProfile.java
33
public class
ImsCallProfile
implements Parcelable {
34
private static final String TAG = "
ImsCallProfile
";
124
* {@link
ImsCallProfile
#OIR_DEFAULT}
125
* {@link
ImsCallProfile
#OIR_PRESENTATION_RESTRICTED}
126
* {@link
ImsCallProfile
#OIR_PRESENTATION_NOT_RESTRICTED}
128
* {@link
ImsCallProfile
#OIR_DEFAULT}
129
* {@link
ImsCallProfile
#OIR_PRESENTATION_RESTRICTED}
130
* {@link
ImsCallProfile
#OIR_PRESENTATION_NOT_RESTRICTED}
132
* {@link
ImsCallProfile
#DIALSTRING_NORMAL_CALL}
133
* {@link
ImsCallProfile
#DIALSTRING_SS_CONF
[
all
...]
Completed in 171 milliseconds