Searched defs:callId (Results 1 - 25 of 28) sorted by relevance

12

/external/nist-sip/java/javax/sip/header/
H A DCallIdHeader.java9 void setCallId(String callId) throws ParseException; argument
H A DHeaderFactory.java35 CallIdHeader createCallIdHeader(String callId) throws ParseException; argument
87 InReplyToHeader createInReplyToHeader(String callId) throws ParseException; argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
H A DHeapSnapshotWorkerDispatcher.js63 var response = {callId: data.callId};
/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/nist-sip/java/gov/nist/javax/sip/clientauthutils/
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
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 DAuthenticationHelperImpl.java438 String callId = sipRequest.getCallId().getCallId();
442 .getCachedAuthorizationHeaders(callId);
446 "Could not find authentication headers for " + callId);
461 public void removeCachedAuthenticationHeaders(String callId) { argument
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/
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);
H A DHeaderFactoryExt.java70 * @param callId -
78 public ReplacesHeader createReplacesHeader(String callId, String toTag, argument
226 * @param callId -
234 public JoinHeader createJoinHeader(String callId, String toTag, argument
H A DHeaderFactoryImpl.java260 * 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) argument
269 if (callId == null)
270 throw new NullPointerException("null arg callId");
272 c.setCallId(callId);
523 * Creates a new InReplyToHeader based on the newly supplied callId
526 * @param callId - the new string containing the callId valu
532 createInReplyToHeader(String callId) argument
1273 createReplacesHeader(String callId, String toTag, String fromTag) argument
1288 createJoinHeader(String callId, String toTag, String fromTag) argument
1681 createReferencesHeader(String callId, String rel) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
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 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 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 DReferencesHeader.java30 public void setCallId(String callId) throws ParseException; argument
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
/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/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/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInspectorAgent.cpp145 void InspectorInspectorAgent::evaluateForTestInFrontend(long callId, const String& script) argument
148 m_frontend->evaluateForTestInFrontend(static_cast<int>(callId), script);
151 m_pendingEvaluateTestCommands.append(pair<long, String>(callId, script));
H A DInspectorController.cpp326 void InspectorController::evaluateForTestInFrontend(long callId, const String& script) argument
330 inspectorAgent->evaluateForTestInFrontend(callId, script);
/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/chromium_org/third_party/WebKit/Source/web/
H A DWebDevToolsAgentImpl.cpp599 void WebDevToolsAgentImpl::evaluateInWebInspector(long callId, const WebString& script) argument
602 ic->evaluateForTestInFrontend(callId, script);

Completed in 345 milliseconds

12