HomeSort by relevance Sort by last modified time
    Searched refs:getCallId (Results 1 - 25 of 31) sorted by null

1 2

  /external/nist-sip/java/javax/sip/header/
CallIdHeader.java 8 String getCallId();
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
JoinHeader.java 215 public String getCallId();
ReplacesHeader.java 30 String getCallId();
ReferencesHeader.java 32 public String getCallId();
References.java 24 public String getCallId() {
Join.java 76 public String getCallId() {
Replaces.java 76 public String getCallId() {
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallID.java 71 return this.getCallId().equalsIgnoreCase( o.getCallId() );
97 public String getCallId() {
InReplyTo.java 89 public String getCallId() {
  /frameworks/base/voip/java/android/net/sip/
ISipSession.aidl 70 String getCallId();
SipManager.java 188 * description string extra. Use {@link #getCallId} and
199 * @see #getCallId
206 * @see #getCallId
371 String callId = getCallId(incomingCallIntent);
403 String callId = getCallId(intent);
414 public static String getCallId(Intent incomingCallIntent) {
504 String callId = getCallId(incomingCallIntent);
SipSession.java 318 public String getCallId() {
320 return mSession.getCallId();
322 Log.e(TAG, "getCallId(): " + e);
  /frameworks/base/voip/java/com/android/server/sip/
SipHelper.java 431 public static String getCallId(EventObject event) {
434 return getCallId(((RequestEvent) event).getRequest());
436 return getCallId(((ResponseEvent) event).getResponse());
439 return getCallId(((DialogTerminatedEvent) event).getDialog());
442 return getCallId(e.isServerTransaction()
448 return getCallId(((Transaction) source));
450 return getCallId((Dialog) source);
456 public static String getCallId(Transaction transaction) {
457 return ((transaction != null) ? getCallId(transaction.getRequest())
461 private static String getCallId(Message message)
    [all...]
SipSessionGroup.java 239 String key = SipHelper.getCallId(event);
253 String key = newSession.getCallId();
265 String key = session.getCallId();
488 public String getCallId() {
489 return SipHelper.getCallId(getTransaction());
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java 72 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
ReplacesParser.java 74 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
  /external/nist-sip/java/gov/nist/javax/sip/stack/
ServerLog.java 345 CallID cid = (CallID) message.getCallId();
348 callId = cid.getCallId();
370 CallID cid = (CallID) message.getCallId();
373 callId = cid.getCallId();
SIPServerTransaction.java 644 && getOriginalRequest().getCallId().getCallId().equalsIgnoreCase(
645 messageToTest.getCallId().getCallId())
    [all...]
SIPTransaction.java 396 this.callId = (CallID) newOriginalRequest.getCallId();
995 && getOriginalRequest().getCallId().getCallId().equals(
996 requestToTest.getCallId().getCallId())
    [all...]
SIPDialog.java 572 this.callIdHeader = sipRequest.getCallId();
623 this.callIdHeader = sipResponse.getCallId();
    [all...]
SIPTransactionStack.java 828 && notifyMessage.getCallId().getCallId().equalsIgnoreCase(
829 ct.callId.getCallId())) {
    [all...]
  /external/nist-sip/java/javax/sip/
Dialog.java 15 CallIdHeader getCallId();
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 420 if (getCallId() == null) {
559 CallID cid = (CallID) this.getCallId();
562 StringBuffer retval = new StringBuffer(cid.getCallId());
590 CallID cid = (CallID) this.getCallId();
592 StringBuffer retval = new StringBuffer(cid.getCallId());
SIPRequest.java 227 if (this.callIdHeader == null || this.callIdHeader.getCallId() == null
228 || callIdHeader.getCallId().equals("")) {
547 CallID cid = (CallID) this.getCallId();
548 StringBuffer retval = new StringBuffer(cid.getCallId());
583 CallID cid = (CallID) this.getCallId();
584 StringBuffer retval = new StringBuffer(cid.getCallId());
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 434 String callId = sipRequest.getCallId().getCallId();

Completed in 959 milliseconds

1 2