Searched defs:getCallId (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/telephony/java/com/android/ims/
H A DImsExternalCallState.java107 public int getCallId() { method in class:ImsExternalCallState
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsExternalConnection.java102 public int getCallId() { method in class:ImsExternalConnection
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipManager.java215 * description string extra. Use {@link #getCallId} and
226 * @see #getCallId
233 * @see #getCallId
413 String callId = getCallId(incomingCallIntent);
449 String callId = getCallId(intent);
460 public static String getCallId(Intent incomingCallIntent) { method in class:SipManager
563 String callId = getCallId(incomingCallIntent);
H A DSipSession.java332 public String getCallId() { method in class:SipSession
334 return mSession.getCallId();
336 loge("getCallId:", e);
/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 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/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/telephony/src/java/com/android/internal/telephony/metrics/
H A DTelephonyMetrics.java1410 private int getCallId(ImsCallSession session) { method in class:TelephonyMetrics
1416 return Integer.parseInt(session.getCallId());
1461 .setCallIndex(getCallId(session))
1477 .setCallIndex(getCallId(session))
1506 .setCallIndex(getCallId(session))
1545 .setCallIndex(getCallId(session))
1569 .setCallIndex(getCallId(session))
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsManager.java892 * The intent contains a call ID extra {@link getCallId} and it can be used to take a call.
905 * @see #getCallId
1163 String callId = getCallId(incomingCallIntent);
1285 private static String getCallId(Intent incomingCallIntent) { method in class:ImsManager

Completed in 154 milliseconds