Home
last modified time | relevance | path

Searched refs:fromTag (Results 1 – 6 of 6) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/header/
DHeaderFactoryExt.java79 String fromTag) throws ParseException; in createReplacesHeader() argument
235 String fromTag) throws ParseException; in createJoinHeader() argument
DHeaderFactoryImpl.java1274 String fromTag) throws ParseException in createReplacesHeader() argument
1278 replaces.setFromTag(fromTag); in createReplacesHeader()
1289 String fromTag) throws ParseException in createJoinHeader() argument
1293 join.setFromTag(fromTag); in createJoinHeader()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPTransactionStack.java812 String fromTag = ct.from.getTag(); in findSubscribeTransaction() local
819 stackLogger.logDebug("ct.fromTag = " + fromTag); in findSubscribeTransaction()
825 if ( fromTag.equalsIgnoreCase(thisToTag) in findSubscribeTransaction()
2332 String fromTag = replacesHeader.getFromTag(); in getReplacesDialog() local
2343 if (fromTag != null) { in getReplacesDialog()
2345 dialogId.append(fromTag); in getReplacesDialog()
2376 String fromTag = joinHeader.getFromTag(); in getJoinDialog() local
2387 if (fromTag != null) { in getJoinDialog()
2389 retval.append(fromTag); in getJoinDialog()
DSIPServerTransaction.java621 String originalFromTag = super.fromTag; in isMessagePartOfTransaction()
1353 String fromTag = ((SIPRequest) this.getRequest()).getFrom().getTag(); in sendResponse() local
1354 if (fromTag != null && sipResponse.getFromTag() != null in sendResponse()
1355 && !sipResponse.getFromTag().equals(fromTag)) { in sendResponse()
1357 } else if (fromTag != null) { in sendResponse()
1358 sipResponse.getFrom().setTag(fromTag); in sendResponse()
DSIPTransaction.java258 protected String fromTag; field in SIPTransaction
395 this.fromTag = this.from.getTag(); in setOriginalRequest()
/external/nist-sip/java/gov/nist/javax/sip/message/
DSIPRequest.java1177 String fromTag = this.getFromTag(); in getMergeId() local
1185 if (fromTag != null) { in getMergeId()
1186 …return new StringBuffer().append(requestUri).append(":").append(fromTag).append(":").append(cseq).… in getMergeId()