OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImsCall
(Results
1 - 6
of
6
) sorted by null
/frameworks/opt/net/ims/src/java/com/android/ims/
ImsCallGroup.java
33
private
ImsCall
mOwner;
34
private
ImsCall
mNeutralReferrer;
70
ImsCall
owner;
80
if (!(call instanceof
ImsCall
)) {
84
return isSameCall(owner, (
ImsCall
)call);
93
if (!(call instanceof
ImsCall
)) {
99
if ((c != null) && isSameCall((
ImsCall
)c, (
ImsCall
)call)) {
114
if (!(call instanceof
ImsCall
)) {
134
if (!(call instanceof
ImsCall
)) {
[
all
...]
ImsCall.java
44
public class
ImsCall
implements ICall {
52
private static final String TAG = "
ImsCall
";
68
public void onCallProgressing(
ImsCall
call) {
78
public void onCallStarted(
ImsCall
call) {
89
public void onCallStartFailed(
ImsCall
call, ImsReasonInfo reasonInfo) {
100
public void onCallTerminated(
ImsCall
call, ImsReasonInfo reasonInfo) {
112
public void onCallHeld(
ImsCall
call) {
123
public void onCallHoldFailed(
ImsCall
call, ImsReasonInfo reasonInfo) {
133
public void onCallHoldReceived(
ImsCall
call) {
143
public void onCallResumed(
ImsCall
call)
[
all
...]
ImsManager.java
389
* Creates a {@link
ImsCall
} to make a call.
395
* @param listener listen to the call events from {@link
ImsCall
}
396
* @return a {@link
ImsCall
} object
399
public
ImsCall
makeCall(int serviceId, ImsCallProfile profile, String[] callees,
400
ImsCall
.Listener listener) throws ImsException {
408
ImsCall
call = new
ImsCall
(mContext, profile);
423
* Creates a {@link
ImsCall
} to take an incoming call.
427
* @param listener to listen to the call events from {@link
ImsCall
}
428
* @return a {@link
ImsCall
} objec
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCallTracker.java
44
import com.android.ims.
ImsCall
;
101
ImsCall
imsCall
= mImsManager.takeCall(mServiceId, intent, mImsCallListener);
103
ImsPhoneConnection conn = new ImsPhoneConnection(mPhone.getContext(),
imsCall
,
108
imsCall
.getCallSession().getVideoCallProvider();
117
conn.update(
imsCall
, ImsPhoneCall.State.WAITING);
158
private
ImsCall
mUssdSession = null;
404
ImsCall
imsCall
= mImsManager.makeCall(mServiceId, profile,
406
conn.setImsCall(
imsCall
);
660
ImsCall
imscall
= mForegroundCall.getImsCall();
local
[
all
...]
ImsPhoneCall.java
26
import com.android.ims.
ImsCall
;
206
ImsCall
imsCall
= getFirstConnection() == null ?
208
if (
imsCall
!= null) {
210
imsCall
.setMute(mute);
226
/*package*/
ImsCall
231
/*package*/ static boolean isLocalTone(
ImsCall
imsCall
) {
232
if ((
imsCall
== null) || (
imsCall
.getCallProfile() == null
[
all
...]
ImsPhoneConnection.java
39
import com.android.ims.
ImsCall
;
53
private
ImsCall
mImsCall;
117
ImsPhoneConnection(Context context,
ImsCall
imsCall
, ImsPhoneCallTracker ct, ImsPhoneCall parent) {
123
mImsCall =
imsCall
;
125
if ((
imsCall
!= null) && (
imsCall
.getCallProfile() != null)) {
126
mAddress =
imsCall
.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_OI);
127
mCnapName =
imsCall
.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_CNA);
129
imsCall
.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_OIR))
[
all
...]
Completed in 1329 milliseconds