HomeSort by relevance Sort by last modified time
    Searched refs:callId (Results 1 - 25 of 59) sorted by null

1 2 3

  /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...]
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...]
  /external/webkit/Source/WebKit/mac/WebInspector/
WebInspectorPrivate.h 36 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script;
  /external/webkit/Source/WebCore/inspector/front-end/
TestController.js 36 notifyDone: function(callId, result)
39 RuntimeAgent.evaluate("didEvaluateForTestInFrontend(" + callId + ", " + message + ")", "test");
43 WebInspector.evaluateForTestInFrontend = function(callId, script)
54 WebInspector.TestController.prototype.notifyDone(callId, result);
56 WebInspector.testController.prototype.notifyDone(callId, e.toString());
  /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...]
AuthenticationHelper.java 71 * @param callId -- the call Id for which we want to remove the cached headers.
74 public abstract void removeCachedAuthenticationHeaders(String 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...]
JoinHeader.java 185 * Sets the Call-Id of the CallIdHeader. The CallId parameter uniquely
191 * @param callId - the string value of the Call-Id of this CallIdHeader.
195 * unexpectedly while parsing the callId value.
199 public void setCallId(String callId) throws ParseException;
205 * Returns the Call-Id of CallIdHeader. The CallId parameter uniquely
ReplacesHeader.java 31 void setCallId(String callId) throws ParseException;
ReferencesHeader.java 30 public void setCallId(String callId) throws ParseException;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 17 String firstLine, String tid, String callId, long tsHeaderValue) {
19 isSender, firstLine, tid, callId, tsHeaderValue);
24 String firstLine, String tid, String callId, long timestampVal) {
26 isSender, firstLine, tid, callId, timestampVal);
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...]
  /external/nist-sip/java/javax/sip/header/
CallIdHeader.java 9 void setCallId(String callId) throws ParseException;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebInspectorPrivate.idl 42 HRESULT evaluateInFrontend([in] ULONG callId, [in] BSTR script);
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 26 * @param callId -- the call id
35 String firstLine, String tid, String callId, long timestampVal);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebinspectorprivate.h 38 WEBKIT_API void webkit_web_inspector_execute_script(WebKitWebInspector*, long callId, const gchar* script);
  /external/nist-sip/java/javax/sip/message/
MessageFactory.java 16 Request createRequest(URI requestURI, String method, CallIdHeader callId,
21 Request createRequest(URI requestURI, String method, CallIdHeader callId,
26 Request createRequest(URI requestURI, String method, CallIdHeader callId,
32 Response createResponse(int statusCode, CallIdHeader callId,
37 Response createResponse(int statusCode, CallIdHeader callId,
42 Response createResponse(int statusCode, CallIdHeader callId,
  /external/nist-sip/java/gov/nist/javax/sip/message/
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/parser/extensions/
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()
ReferencesParser.java 46 String callId = lexer.byteStringNoSemicolon();
48 references.setCallId(callId);
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()
  /frameworks/base/voip/java/android/net/sip/
ISipService.aidl 40 ISipSession getPendingSession(String callId);

Completed in 1313 milliseconds

1 2 3