HomeSort by relevance Sort by last modified time
    Searched refs:getCallId (Results 1 - 25 of 33) 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 195 * 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) {
529 String callId = getCallId(incomingCallIntent);
SipSession.java 332 public String getCallId() {
334 return mSession.getCallId();
336 Log.e(TAG, "getCallId(): " + e);
  /frameworks/base/voip/java/com/android/server/sip/
SipHelper.java 496 public static String getCallId(EventObject event) {
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) {
522 return ((transaction != null) ? getCallId(transaction.getRequest())
526 private static String getCallId(Message message)
    [all...]
SipService.java 392 mPendingSessions.put(session.getCallId(), session);
413 String callId = ringingSession.getCallId();
596 session.getCallId(), sessionDescription);
598 + caller.getUri() + ": " + session.getCallId()
    [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("")) {
551 CallID cid = (CallID) this.getCallId();
552 StringBuffer retval = new StringBuffer(cid.getCallId());
587 CallID cid = (CallID) this.getCallId();
588 StringBuffer retval = new StringBuffer(cid.getCallId());
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 438 String callId = sipRequest.getCallId().getCallId();

Completed in 360 milliseconds

1 2