Searched refs:callId (Results 1 - 25 of 55) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DInReplyTo.java51 protected CallIdentifier callId; field in class:InReplyTo
64 callId = cid;
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 { argument
77 this.callId = new CallIdentifier(callId);
90 if (callId == null)
92 return callId.encode();
100 return callId
[all...]
H A DCallID.java133 *@param callId string call identifier (should be localid@host)
136 public CallID(String callId) throws IllegalArgumentException { argument
138 this.callIdentifier = new CallIdentifier(callId);
/external/webkit/Source/WebCore/inspector/front-end/
H A DTestController.js36 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/webkit/Source/WebKit/mac/WebInspector/
H A DWebInspectorPrivate.h36 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script;
H A DWebInspector.mm191 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script
194 page->inspectorController()->evaluateForTestInFrontend(callId, script);
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DCredentialsCache.java30 String callId; field in class:CredentialsCache.TimeoutTask
34 this.callId = proxyDomain;
40 authorizationHeaders.remove(callId);
61 void cacheAuthorizationHeader(String callId, argument
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);
112 * @param callId
114 public void removeAuthenticationHeader(String callId) { argument
[all...]
H A DAuthenticationHelper.java71 * @param callId -- the call Id for which we want to remove the cached headers.
74 public abstract void removeCachedAuthenticationHeaders(String callId); argument
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
H A DReferences.java15 private String callId; field in class:References
25 return callId;
37 public void setCallId(String callId) { argument
38 this.callId = callId;
76 return callId ;
78 return callId + ";" + super.parameters.encode();
H A DJoin.java37 public String callId; field in class:Join
47 *@param callId string call identifier (should be localid@host)
50 public Join(String callId) throws IllegalArgumentException { argument
52 this.callIdentifier = new CallIdentifier(callId);
60 if (callId == null)
63 String retVal = callId;
77 return callId;
96 callId = cid;
H A DReplaces.java37 public String callId; field in class:Replaces
47 *@param callId string call identifier (should be localid@host)
50 public Replaces(String callId) throws IllegalArgumentException { argument
52 this.callIdentifier = new CallIdentifier(callId);
60 if (callId == null)
63 String retVal = callId;
77 return callId;
96 callId = cid;
220 * Modify encodeBody so it uses callId and not CallIdentifier
H A DJoinHeader.java191 * @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; argument
H A DReplacesHeader.java31 void setCallId(String callId) throws ParseException; argument
H A DReferencesHeader.java30 public void setCallId(String callId) throws ParseException; argument
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java17 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);
15 createLogRecord(String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long tsHeaderValue) argument
22 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DMessageLog.java61 private String callId; field in class:MessageLog
90 String callId,
109 this.callId = callId;
123 String callId,
136 this.callId = callId;
163 + callId
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DServerLog.java323 String callId, String firstLine, String status, String tid, long time,
327 sender, firstLine, tid, callId, timestampVal);
346 String callId = null;
348 callId = cid.getCallId();
354 logMessage(inputText, from, to, sender, callId, firstLine, null, tid, time, tsval);
371 String callId = null;
373 callId = cid.getCallId();
379 logMessage(encoded, from, to, sender, callId, firstLine, status, tid, time, tsval);
322 logMessage(String message, String from, String to, boolean sender, String callId, String firstLine, String status, String tid, long time, long timestampVal) argument
/external/nist-sip/java/javax/sip/header/
H A DCallIdHeader.java9 void setCallId(String callId) throws ParseException; argument
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebInspectorPrivate.idl42 HRESULT evaluateInFrontend([in] ULONG callId, [in] BSTR script);
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecordFactory.java26 * @param callId -- the call id
35 String firstLine, String tid, String callId, long timestampVal);
33 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebinspectorprivate.h38 WEBKIT_API void webkit_web_inspector_execute_script(WebKitWebInspector*, long callId, const gchar* script);
/external/nist-sip/java/javax/sip/message/
H A DMessageFactory.java16 Request createRequest(URI requestURI, String method, CallIdHeader callId, argument
21 Request createRequest(URI requestURI, String method, CallIdHeader callId, argument
26 Request createRequest(URI requestURI, String method, CallIdHeader callId, argument
32 Response createResponse(int statusCode, CallIdHeader callId, argument
37 Response createResponse(int statusCode, CallIdHeader callId, argument
42 Response createResponse(int statusCode, CallIdHeader callId, argument
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageFactoryImpl.java101 * @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);
121 createRequest(javax.sip.address.URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content) argument
178 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, byte[] content, ContentTypeHeader contentType) argument
231 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards) argument
286 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, Object content, ContentTypeHeader contentType) argument
343 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, byte[] content, ContentTypeHeader contentType) argument
390 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards) argument
544 createRequest(javax.sip.address.URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content) argument
598 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content) argument
654 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
H A DJoinParser.java50 String callId = lexer.byteStringNoSemicolon();
53 join.setCallId(callId);
72 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
H A DReferencesParser.java46 String callId = lexer.byteStringNoSemicolon();
48 references.setCallId(callId);
H A DReplacesParser.java52 String callId = lexer.byteStringNoSemicolon();
55 replaces.setCallId(callId);
74 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()

Completed in 279 milliseconds

123