HomeSort by relevance Sort by last modified time
    Searched defs:callId (Results 1 - 19 of 19) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
InReplyTo.java 51 protected CallIdentifier callId;
64 callId = cid;
68 * Sets the Call-Id of the InReplyToHeader. The CallId parameter uniquely
71 * @param callId - the string value of the Call-Id of this InReplyToHeader.
73 * unexpectedly while parsing the callId value.
75 public void setCallId(String callId) throws ParseException {
77 this.callId = new CallIdentifier(callId);
84 * Returns the Call-Id of InReplyToHeader. The CallId parameter uniquely
90 if (callId == null
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
ReferencesParser.java 46 String callId = lexer.byteStringNoSemicolon();
48 references.setCallId(callId);
JoinParser.java 12 // Join = "Join" HCOLON callid *(SEMI join-param)
23 * @param callID message to parse
25 public JoinParser(String callID) {
26 super(callID);
39 * @return SIPHeader (CallID object)
50 String callId = lexer.byteStringNoSemicolon();
53 join.setCallId(callId);
72 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
ReplacesParser.java 12 // Replaces = "Replaces" HCOLON callid *(SEMI replaces-param)
25 * @param callID message to parse
27 public ReplacesParser(String callID) {
28 super(callID);
41 * @return SIPHeader (CallID object)
52 String callId = lexer.byteStringNoSemicolon();
55 replaces.setCallId(callId);
74 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 30 String callId;
34 this.callId = proxyDomain;
40 authorizationHeaders.remove(callId);
55 * @param callid
61 void cacheAuthorizationHeader(String callId,
64 if ( callId == null) throw new NullPointerException("Call ID is null!");
67 List<AuthorizationHeader> authHeaders = authorizationHeaders.get(callId);
70 authorizationHeaders.put(callId, authHeaders);
83 TimeoutTask timeoutTask = new TimeoutTask( callId,user);
94 * @param callid
    [all...]
AuthenticationHelperImpl.java 438 String callId = sipRequest.getCallId().getCallId();
442 .getCachedAuthorizationHeaders(callId);
446 "Could not find authentication headers for " + callId);
461 public void removeCachedAuthenticationHeaders(String callId) {
462 if (callId == null)
463 throw new NullPointerException("Null callId argument ");
464 this.cachedCredentials.removeAuthenticationHeader(callId);
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
References.java 15 private String callId;
25 return callId;
37 public void setCallId(String callId) {
38 this.callId = callId;
76 return callId ;
78 return callId + ";" + super.parameters.encode();
Join.java 37 public String callId;
47 *@param callId string call identifier (should be localid@host)
50 public Join(String callId) throws IllegalArgumentException {
52 this.callIdentifier = new CallIdentifier(callId);
60 if (callId == null)
63 String retVal = callId;
72 * get the CallId field. This does the same thing as encodeBody
77 return callId;
89 * set the CallId field
96 callId = cid
    [all...]
Replaces.java 37 public String callId;
47 *@param callId string call identifier (should be localid@host)
50 public Replaces(String callId) throws IllegalArgumentException {
52 this.callIdentifier = new CallIdentifier(callId);
60 if (callId == null)
63 String retVal = callId;
72 * get the CallId field. This does the same thing as encodeBody
77 return callId;
89 * set the CallId field
96 callId = cid
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 61 private String callId;
90 String callId,
109 this.callId = callId;
123 String callId,
136 this.callId = callId;
163 + callId
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...]
  /external/smack/src/org/jivesoftware/smack/sasl/
SASLFacebookConnect.java 117 Long callId = new GregorianCalendar().getTimeInMillis()/1000;
120 +"call_id="+callId
134 +"call_id="+callId+"&"
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipManager.java 385 String callId = getCallId(incomingCallIntent);
386 if (callId == null) {
397 ISipSession session = mSipService.getPendingSession(callId);
419 String callId = getCallId(intent);
421 return ((callId != null) && (offerSd != null));
449 * @param callId the call ID of the incoming call
454 public static Intent createIncomingCallBroadcast(String callId,
457 intent.putExtra(EXTRA_CALL_ID, callId);
528 String callId = getCallId(incomingCallIntent);
529 ISipSession s = mSipService.getPendingSession(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/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 551 CallID cid = (CallID) this.getCallId();
587 CallID cid = (CallID) this.getCallId();
705 || nextHeader instanceof CallID
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipService.java 271 public synchronized ISipSession getPendingSession(String callId) {
274 if (callId == null) return null;
275 return mPendingSessions.get(callId);
410 String callId = ringingSession.getCallId();
412 if ((group != ringingGroup) && group.containsSession(callId)) {
476 public boolean containsSession(String callId) {
477 return mSipGroup.containsSession(callId);
    [all...]
SipSessionGroup.java 273 synchronized boolean containsSession(String callId) {
274 return mSessionMap.containsKey(callId);
447 String callId = replaces.getCallId();
448 SipSessionImpl session = mSessionMap.get(callId);
    [all...]
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.cpp     [all...]

Completed in 475 milliseconds