HomeSort by relevance Sort by last modified time
    Searched refs:CallID (Results 1 - 15 of 15) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
CallID.java 40 public class CallID
56 public CallID() {
93 * get the CallId field. This does the same thing as
110 * set the CallId field
133 *@param callId string call identifier (should be localid@host)
136 public CallID(String callId) throws IllegalArgumentException {
138 this.callIdentifier = new CallIdentifier(callId);
142 CallID retval = (CallID) super.clone()
    [all...]
NameMap.java 113 putNameMap(CALL_ID, CallID.class.getName()); //18
HeaderFactoryImpl.java 260 * Creates a new CallIdHeader based on the newly supplied callId value.
262 * @param callId - the new string value of the call-id.
264 * unexpectedly while parsing the callId value.
267 public CallIdHeader createCallIdHeader(String callId)
269 if (callId == null)
270 throw new NullPointerException("null arg callId");
271 CallID c = new CallID();
272 c.setCallId(callId);
523 * Creates a new InReplyToHeader based on the newly supplied callId
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallIDParser.java 43 * @param callID message to parse
45 public CallIDParser(String callID) {
46 super(callID);
59 * @return SIPHeader (CallID object)
71 CallID callID = new CallID();
75 callID.setCallId(rest.trim());
76 return callID;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
ServerLog.java 35 import gov.nist.javax.sip.header.CallID;
323 String callId, String firstLine, String status, String tid, long time,
327 sender, firstLine, tid, callId, timestampVal);
345 CallID cid = (CallID) message.getCallId();
346 String callId = null;
348 callId = cid.getCallId();
354 logMessage(inputText, from, to, sender, callId, firstLine, null, tid, time, tsval);
370 CallID cid = (CallID) message.getCallId()
    [all...]
SIPTransaction.java 31 import gov.nist.javax.sip.header.CallID;
246 protected CallID callId;
396 this.callId = (CallID) newOriginalRequest.getCallId();
983 // CallID, CSeq number, and top Via
    [all...]
UDPMessageChannel.java 38 import gov.nist.javax.sip.header.CallID;
408 + sipMessage.getTo() + "CallId = "
591 || hdrClass.equals(CallID.class)
    [all...]
TCPMessageChannel.java 369 || hdrClass.equals(CallID.class) || hdrClass.equals(RequestLine.class) || hdrClass
TLSMessageChannel.java 349 || hdrClass.equals(CallID.class) || hdrClass.equals(RequestLine.class) || hdrClass
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 35 import gov.nist.javax.sip.header.CallID;
421 throw new ParseException(CallID.NAME + " Is missing ", 0);
559 CallID cid = (CallID) this.getCallId();
590 CallID cid = (CallID) this.getCallId();
SIPRequest.java 551 CallID cid = (CallID) this.getCallId();
587 CallID cid = (CallID) this.getCallId();
705 || nextHeader instanceof CallID
    [all...]
SIPMessage.java 37 import gov.nist.javax.sip.header.CallID;
156 protected CallID callIdHeader;
708 } else if (h instanceof CallID) {
709 this.callIdHeader = (CallID) h;
757 } else if (toRemove instanceof CallID) {
796 } else if (removed instanceof CallID) {
    [all...]
MessageFactoryImpl.java 101 * @param callId -
102 * the new CallIdHeader object of the callId value of this
122 String method, CallIdHeader callId, CSeqHeader cSeq,
126 if (requestURI == null || method == null || callId == null
135 sipRequest.setCallId(callId);
158 * @param callId -
159 * the new CallIdHeader object of the callId value of this
179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to,
182 if (requestURI == null || method == null || callId == null
193 sipRequest.setCallId(callId);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 34 import gov.nist.javax.sip.header.CallID;
258 String callId = Utils.getInstance().generateCallIdentifier(this.getListeningPoint()
260 CallID callid = new CallID(); local
262 callid.setCallId(callId);
265 return callid;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp     [all...]

Completed in 865 milliseconds