Home
last modified time | relevance | path

Searched refs:callIdHeader (Results 1 – 4 of 4) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/message/
DSIPMessage.java156 protected CallID callIdHeader; field in SIPMessage
478 retval.callIdHeader = null; in clone()
709 this.callIdHeader = (CallID) h; in attachHeader()
758 this.callIdHeader = null; in removeHeader()
797 this.callIdHeader = null; in removeHeader()
860 String cid = this.callIdHeader.getCallId(); in getTransactionId()
884 if (this.callIdHeader == null) in hashCode()
888 return this.callIdHeader.getCallId().hashCode(); in hashCode()
1100 return callIdHeader; in getCallId()
1118 if (callIdHeader == null) { in setCallId()
[all …]
DSIPRequest.java227 if (this.callIdHeader == null || this.callIdHeader.getCallId() == null in checkHeaders()
228 || callIdHeader.getCallId().equals("")) { in checkHeaders()
777 cancel.setHeader((Header) this.callIdHeader.clone()); in createCancelRequest()
919 newRequest.setHeader((Header) this.callIdHeader.clone()); in createErrorAck()
1179 String callId = this.callIdHeader.getCallId(); in getMergeId()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPDialog.java210 protected CallIdHeader callIdHeader; field in SIPDialog
572 this.callIdHeader = sipRequest.getCallId(); in SIPDialog()
623 this.callIdHeader = sipResponse.getCallId(); in SIPDialog()
1760 return this.callIdHeader; in getCallId()
1767 this.callIdHeader = sipRequest.getCallId(); in setCallId()
2450 sipRequest.setCallId(this.callIdHeader); in createAck()
2552 this.callIdHeader = sipResponse.getCallId(); in setLastResponse()
DSIPTransactionStack.java2156 CallIdHeader callIdHeader = (itDialog != null ? itDialog.getCallId() : null); in auditDialogs() local
2157 String callID = (callIdHeader != null ? callIdHeader.getCallId() : null); in auditDialogs()