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

/frameworks/base/voip/java/android/net/sip/
H A DSipManager.java195 * description string extra. Use {@link #getCallId} and
206 * @see #getCallId
213 * @see #getCallId
386 String callId = getCallId(incomingCallIntent);
420 String callId = getCallId(intent);
431 public static String getCallId(Intent incomingCallIntent) { method in class:SipManager
529 String callId = getCallId(incomingCallIntent);
H A DSipSession.java332 public String getCallId() { method in class:SipSession
334 return mSession.getCallId();
336 Log.e(TAG, "getCallId(): " + e);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipHelper.java496 public static String getCallId(EventObject event) { method in class:SipHelper
499 return getCallId(((RequestEvent) event).getRequest());
501 return getCallId(((ResponseEvent) event).getResponse());
504 return getCallId(((DialogTerminatedEvent) event).getDialog());
507 return getCallId(e.isServerTransaction()
513 return getCallId(((Transaction) source));
515 return getCallId((Dialog) source);
521 public static String getCallId(Transaction transaction) { method in class:SipHelper
522 return ((transaction != null) ? getCallId(transaction.getRequest())
526 private static String getCallId(Messag method in class:SipHelper
532 private static String getCallId(Dialog dialog) { method in class:SipHelper
[all...]
H A DSipSessionGroup.java285 String key = SipHelper.getCallId(event);
299 String key = newSession.getCallId();
311 String key = session.getCallId();
445 String callId = replaces.getCallId();
482 mSessionMap.get(replaces.getCallId());
642 public String getCallId() { method in class:SipSessionGroup.SipSessionImpl
643 return SipHelper.getCallId(getTransaction());

Completed in 39 milliseconds