Searched refs:getCallId (Results 1 - 11 of 11) sorted by relevance

/frameworks/opt/net/voip/src/java/android/net/sip/
H A DISipSession.aidl70 String getCallId();
H A DSipManager.java205 * description string extra. Use {@link #getCallId} and
216 * @see #getCallId
223 * @see #getCallId
398 String callId = getCallId(incomingCallIntent);
433 String callId = getCallId(intent);
444 public static String getCallId(Intent incomingCallIntent) { method in class:SipManager
544 String callId = getCallId(incomingCallIntent);
H A DSipSession.java332 public String getCallId() { method in class:SipSession
334 return mSession.getCallId();
336 loge("getCallId:", e);
H A DSipAudioCall.java409 || !session.getCallId().equals(
410 mSipSession.getCallId())) {
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipHelper.java494 public static String getCallId(EventObject event) { method in class:SipHelper
497 return getCallId(((RequestEvent) event).getRequest());
499 return getCallId(((ResponseEvent) event).getResponse());
502 return getCallId(((DialogTerminatedEvent) event).getDialog());
505 return getCallId(e.isServerTransaction()
511 return getCallId(((Transaction) source));
513 return getCallId((Dialog) source);
519 public static String getCallId(Transaction transaction) { method in class:SipHelper
520 return ((transaction != null) ? getCallId(transaction.getRequest())
524 private static String getCallId(Messag method in class:SipHelper
530 private static String getCallId(Dialog dialog) { method in class:SipHelper
[all...]
H A DSipService.java403 mPendingSessions.put(session.getCallId(), session);
424 String callId = ringingSession.getCallId();
583 session.getCallId(), sessionDescription);
585 + caller.getUri() + ": " + session.getCallId()
H A DSipSessionGroup.java278 String key = SipHelper.getCallId(event);
292 String key = newSession.getCallId();
304 String key = session.getCallId();
447 String callId = replaces.getCallId();
484 mSessionMap.get(replaces.getCallId());
658 public String getCallId() { method in class:SipSessionGroup.SipSessionImpl
659 return SipHelper.getCallId(getTransaction());
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsCallSession.aidl41 String getCallId();
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java449 public String getCallId() { method in class:ImsCallSession
455 return miSession.getCallId();
1065 if (!Objects.equals(miSession.getCallId(), newSession.getCallId())) {
1070 Log.e(TAG, "callSessionMergeComplete: exception for getCallId!");
1284 sb.append(getCallId());
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java2357 String callId = cs.getCallId();
2358 return ((isMergeHost() && Objects.equals(mMergePeer.mSession.getCallId(), callId)) ||
2359 (isMergePeer() && Objects.equals(mMergeHost.mSession.getCallId(), callId)) ||
2360 Objects.equals(mSession.getCallId(), callId));
H A DImsManager.java630 * The intent contains a call ID extra {@link getCallId} and it can be used to take a call.
643 * @see #getCallId
874 String callId = getCallId(incomingCallIntent);
974 private static String getCallId(Intent incomingCallIntent) { method in class:ImsManager

Completed in 203 milliseconds