HomeSort by relevance Sort by last modified time
    Searched refs:getCallId (Results 1 - 25 of 43) 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/opt/net/voip/src/java/android/net/sip/
ISipSession.aidl 70 String getCallId();
SipManager.java 205 * description string extra. Use {@link #getCallId} and
216 * @see #getCallId
223 * @see #getCallId
396 String callId = getCallId(incomingCallIntent);
430 String callId = getCallId(intent);
441 public static String getCallId(Intent incomingCallIntent) {
539 String callId = getCallId(incomingCallIntent);
SipSession.java 332 public String getCallId() {
334 return mSession.getCallId();
336 loge("getCallId:", e);
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 494 public static String getCallId(EventObject event) {
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) {
520 return ((transaction != null) ? getCallId(transaction.getRequest())
524 private static String getCallId(Message message)
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSession.aidl 41 String getCallId();
  /packages/services/Telecomm/src/com/android/server/telecom/
CallIdMapper.java 90 String callId = getCallId(callToReplace);
120 String getCallId(Call call) {
ConnectionServiceWrapper.java 679 String callId = mCallIdMapper.getCallId(call);
726 final String callId = mCallIdMapper.getCallId(call);
    [all...]
InCallController.java 231 inCallService.setPostDialWait(mCallIdMapper.getCallId(call), remaining);
460 String callId = mCallIdMapper.getCallId(call);
496 parentCallId = mCallIdMapper.getCallId(parentCall);
509 childCallIds.add(mCallIdMapper.getCallId(child));
525 String otherId = mCallIdMapper.getCallId(otherCall);
617 if (mCallIdMapper.getCallId(call) == null) {
  /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...]
  /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());

Completed in 257 milliseconds

1 2