Home | History | Annotate | Download | only in ims

Lines Matching defs:callType

1126      * @param callType The call type the user agreed to for accepting the call.
1129 public void accept(int callType) throws ImsException {
1130 accept(callType, new ImsStreamMediaProfile());
1136 * @param callType call type to be answered in {@link ImsCallProfile}
1141 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException {
1142 logi("accept :: callType=" + callType + ", profile=" + profile);
1156 mSession.accept(callType, profile);
1464 public void update(int callType, ImsStreamMediaProfile mediaProfile) throws ImsException {
1465 logi("update :: callType=" + callType + ", mediaProfile=" + mediaProfile);
1491 mSession.update(callType, mediaProfile);
3539 String callType = mCallProfile.getCallExtra(ImsCallProfile.EXTRA_CALL_RAT_TYPE);
3540 if (callType == null || callType.isEmpty()) {
3541 callType = mCallProfile.getCallExtra(ImsCallProfile.EXTRA_CALL_RAT_TYPE_ALT);
3548 radioTechnology = Integer.parseInt(callType);