OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImsCallProfile
(Results
1 - 11
of
11
) sorted by null
/frameworks/base/telephony/java/com/android/ims/
ImsCallProfile.aidl
19
parcelable
ImsCallProfile
;
ImsCallProfile.java
33
public class
ImsCallProfile
implements Parcelable {
34
private static final String TAG = "
ImsCallProfile
";
120
* {@link
ImsCallProfile
#OIR_DEFAULT}
121
* {@link
ImsCallProfile
#OIR_PRESENTATION_RESTRICTED}
122
* {@link
ImsCallProfile
#OIR_PRESENTATION_NOT_RESTRICTED}
124
* {@link
ImsCallProfile
#OIR_DEFAULT}
125
* {@link
ImsCallProfile
#OIR_PRESENTATION_RESTRICTED}
126
* {@link
ImsCallProfile
#OIR_PRESENTATION_NOT_RESTRICTED}
128
* {@link
ImsCallProfile
#DIALSTRING_NORMAL_CALL}
129
* {@link
ImsCallProfile
#DIALSTRING_SS_CONF
[
all
...]
/frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSession.aidl
20
import com.android.ims.
ImsCallProfile
;
48
ImsCallProfile
getCallProfile();
55
ImsCallProfile
getLocalCallProfile();
106
void start(String callee, in
ImsCallProfile
profile);
119
void startConference(in String[] participants, in
ImsCallProfile
profile);
124
* @param callType call type specified in {@link
ImsCallProfile
} to be answered
173
* @param callType call type specified in {@link
ImsCallProfile
} to be updated
IImsCallSessionListener.aidl
20
import com.android.ims.
ImsCallProfile
;
36
void callSessionStarted(in IImsCallSession session, in
ImsCallProfile
profile);
43
void callSessionHeld(in IImsCallSession session, in
ImsCallProfile
profile);
45
void callSessionHoldReceived(in IImsCallSession session, in
ImsCallProfile
profile);
46
void callSessionResumed(in IImsCallSession session, in
ImsCallProfile
profile);
48
void callSessionResumeReceived(in IImsCallSession session, in
ImsCallProfile
profile);
54
in IImsCallSession newSession, in
ImsCallProfile
profile);
62
in
ImsCallProfile
profile);
66
in
ImsCallProfile
profile);
72
in IImsCallSession newSession, in
ImsCallProfile
profile)
[
all
...]
IImsService.aidl
21
import com.android.ims.
ImsCallProfile
;
40
ImsCallProfile
createCallProfile(int serviceId, int serviceType, int callType);
42
IImsCallSession createCallSession(int serviceId, in
ImsCallProfile
profile,
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
ImsCallSession.java
21
import com.android.ims.
ImsCallProfile
;
108
ImsCallProfile
profile) {
138
ImsCallProfile
profile) {
157
ImsCallProfile
profile) {
166
ImsCallProfile
profile) {
185
ImsCallProfile
profile) {
195
ImsCallSession newSession,
ImsCallProfile
profile) {
214
ImsCallProfile
profile) {
233
ImsCallProfile
profile) {
245
ImsCallSession newSession,
ImsCallProfile
profile)
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneConnection.java
40
import com.android.ims.
ImsCallProfile
;
126
mAddress = imsCall.getCallProfile().getCallExtra(
ImsCallProfile
.EXTRA_OI);
127
mCnapName = imsCall.getCallProfile().getCallExtra(
ImsCallProfile
.EXTRA_CNA);
128
mNumberPresentation =
ImsCallProfile
.OIRToPresentation(
129
imsCall.getCallProfile().getCallExtraInt(
ImsCallProfile
.EXTRA_OIR));
130
mCnapNamePresentation =
ImsCallProfile
.OIRToPresentation(
131
imsCall.getCallProfile().getCallExtraInt(
ImsCallProfile
.EXTRA_CNAP));
133
ImsCallProfile
imsCallProfile
= imsCall.getCallProfile();
134
if (
imsCallProfile
!= null)
[
all
...]
ImsPhoneCallTracker.java
45
import com.android.ims.
ImsCallProfile
;
95
mUssdSession.accept(
ImsCallProfile
.CALL_TYPE_VOICE);
393
ImsCallProfile
.SERVICE_TYPE_EMERGENCY :
ImsCallProfile
.SERVICE_TYPE_NORMAL;
394
int callType =
ImsCallProfile
.getCallTypeFromVideoState(videoState);
400
ImsCallProfile
profile = mImsManager.createCallProfile(mServiceId,
402
profile.setCallExtraInt(
ImsCallProfile
.EXTRA_OIR, clirMode);
449
imsCall.accept(
ImsCallProfile
.getCallTypeFromVideoState(videoState));
751
if (imsCall != null) imsCall.accept(
ImsCallProfile
.CALL_TYPE_VOICE);
778
ImsCallProfile
profile = mImsManager.createCallProfile(mServiceId
[
all
...]
ImsPhone.java
39
import com.android.ims.
ImsCallProfile
;
363
mCT.acceptCall(
ImsCallProfile
.CALL_TYPE_VOICE);
[
all
...]
/frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java
403
private
ImsCallProfile
mCallProfile = null;
407
private
ImsCallProfile
mProposedCallProfile = null;
419
public ImsCall(Context context,
ImsCallProfile
profile) {
456
return userId.equals(mCallProfile.getCallExtra(
ImsCallProfile
.EXTRA_REMOTE_URI, ""));
481
* @return a {@link
ImsCallProfile
} object that has the negotiated call profile
483
public
ImsCallProfile
getCallProfile() {
492
* @return a {@link
ImsCallProfile
} object that has the local call profile
494
public
ImsCallProfile
getLocalCallProfile() throws ImsException {
513
* @return a {@link
ImsCallProfile
} object that has the proposed call profile
515
public
ImsCallProfile
getProposedCallProfile()
[
all
...]
ImsManager.java
314
* @param serviceType a service type that is specified in {@link
ImsCallProfile
}
315
* {@link
ImsCallProfile
#SERVICE_TYPE_NORMAL}
316
* {@link
ImsCallProfile
#SERVICE_TYPE_EMERGENCY}
317
* @param callType a call type that is specified in {@link
ImsCallProfile
}
318
* {@link
ImsCallProfile
#CALL_TYPE_VOICE_N_VIDEO}
319
* {@link
ImsCallProfile
#CALL_TYPE_VOICE}
320
* {@link
ImsCallProfile
#CALL_TYPE_VT}
321
* {@link
ImsCallProfile
#CALL_TYPE_VS}
357
* Creates a {@link
ImsCallProfile
} from the service capabilities & IMS registration state.
360
* @param serviceType a service type that is specified in {@link
ImsCallProfile
}
[
all
...]
Completed in 165 milliseconds