Home
last modified time | relevance | path

Searched refs:callId (Results 1 – 25 of 60) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/header/
DInReplyTo.java51 protected CallIdentifier callId; field in InReplyTo
64 callId = cid; in InReplyTo()
75 public void setCallId(String callId) throws ParseException { in setCallId() argument
77 this.callId = new CallIdentifier(callId); in setCallId()
90 if (callId == null) in getCallId()
92 return callId.encode(); in getCallId()
100 return callId.encode(); in encodeBody()
105 if (this.callId != null) in clone()
106 retval.callId = (CallIdentifier) this.callId.clone(); in clone()
DHeaderFactoryImpl.java267 public CallIdHeader createCallIdHeader(String callId) in createCallIdHeader() argument
269 if (callId == null) in createCallIdHeader()
272 c.setCallId(callId); in createCallIdHeader()
532 public InReplyToHeader createInReplyToHeader(String callId) in createInReplyToHeader() argument
534 if (callId == null) in createInReplyToHeader()
537 inReplyTo.setCallId(callId); in createInReplyToHeader()
1273 public ReplacesHeader createReplacesHeader(String callId, String toTag, in createReplacesHeader() argument
1277 replaces.setCallId(callId); in createReplacesHeader()
1288 public JoinHeader createJoinHeader(String callId, String toTag, in createJoinHeader() argument
1292 join.setCallId(callId); in createJoinHeader()
[all …]
DCallID.java136 public CallID(String callId) throws IllegalArgumentException { in CallID() argument
138 this.callIdentifier = new CallIdentifier(callId); in CallID()
DHeaderFactoryExt.java78 public ReplacesHeader createReplacesHeader(String callId, String toTag, in createReplacesHeader() argument
234 public JoinHeader createJoinHeader(String callId, String toTag, in createJoinHeader() argument
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
DCredentialsCache.java30 String callId; field in CredentialsCache.TimeoutTask
34 this.callId = proxyDomain; in TimeoutTask()
40 authorizationHeaders.remove(callId); in run()
61 void cacheAuthorizationHeader(String callId, in cacheAuthorizationHeader() argument
64 if ( callId == null) throw new NullPointerException("Call ID is null!"); in cacheAuthorizationHeader()
67 List<AuthorizationHeader> authHeaders = authorizationHeaders.get(callId); in cacheAuthorizationHeader()
70 authorizationHeaders.put(callId, authHeaders); in cacheAuthorizationHeader()
83 TimeoutTask timeoutTask = new TimeoutTask( callId,user); in cacheAuthorizationHeader()
114 public void removeAuthenticationHeader(String callId) { in removeAuthenticationHeader() argument
115 this.authorizationHeaders.remove(callId); in removeAuthenticationHeader()
DAuthenticationHelperImpl.java438 String callId = sipRequest.getCallId().getCallId(); in setAuthenticationHeaders() local
442 .getCachedAuthorizationHeaders(callId); in setAuthenticationHeaders()
446 "Could not find authentication headers for " + callId); in setAuthenticationHeaders()
461 public void removeCachedAuthenticationHeaders(String callId) { in removeCachedAuthenticationHeaders() argument
462 if (callId == null) in removeCachedAuthenticationHeaders()
464 this.cachedCredentials.removeAuthenticationHeader(callId); in removeCachedAuthenticationHeaders()
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
DReferences.java15 private String callId; field in References
25 return callId; in getCallId()
37 public void setCallId(String callId) { in setCallId() argument
38 this.callId = callId; in setCallId()
76 return callId ; in encodeBody()
78 return callId + ";" + super.parameters.encode(); in encodeBody()
DJoin.java37 public String callId; field in Join
50 public Join(String callId) throws IllegalArgumentException { in Join() argument
52 this.callIdentifier = new CallIdentifier(callId); in Join()
60 if (callId == null) in encodeBody()
63 String retVal = callId; in encodeBody()
77 return callId; in getCallId()
96 callId = cid; in setCallId()
DReplaces.java37 public String callId; field in Replaces
50 public Replaces(String callId) throws IllegalArgumentException { in Replaces() argument
52 this.callIdentifier = new CallIdentifier(callId); in Replaces()
60 if (callId == null) in encodeBody()
63 String retVal = callId; in encodeBody()
77 return callId; in getCallId()
96 callId = cid; in setCallId()
DJoinHeader.java199 public void setCallId(String callId) throws ParseException; in setCallId() argument
/external/nist-sip/java/gov/nist/javax/sip/message/
DMessageFactoryImpl.java122 String method, CallIdHeader callId, CSeqHeader cSeq, in createRequest() argument
126 if (requestURI == null || method == null || callId == null in createRequest()
135 sipRequest.setCallId(callId); in createRequest()
179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, in createRequest() argument
182 if (requestURI == null || method == null || callId == null in createRequest()
193 sipRequest.setCallId(callId); in createRequest()
232 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, in createRequest() argument
234 if (requestURI == null || method == null || callId == null in createRequest()
244 sipRequest.setCallId(callId); in createRequest()
286 public Response createResponse(int statusCode, CallIdHeader callId, in createResponse() argument
[all …]
/external/nist-sip/java/gov/nist/javax/sip/stack/
DMessageLog.java61 private String callId; field in MessageLog
90 String callId, in MessageLog() argument
109 this.callId = callId; in MessageLog()
123 String callId, in MessageLog() argument
136 this.callId = callId; in MessageLog()
163 + callId in toString()
DDefaultMessageLogFactory.java17 String firstLine, String tid, String callId, long tsHeaderValue) { in createLogRecord() argument
19 isSender, firstLine, tid, callId, tsHeaderValue); in createLogRecord()
24 String firstLine, String tid, String callId, long timestampVal) { in createLogRecord() argument
26 isSender, firstLine, tid, callId, timestampVal); in createLogRecord()
DServerLog.java323 String callId, String firstLine, String status, String tid, long time, in logMessage() argument
327 sender, firstLine, tid, callId, timestampVal); in logMessage()
346 String callId = null; in logMessage() local
348 callId = cid.getCallId(); in logMessage()
354 logMessage(inputText, from, to, sender, callId, firstLine, null, tid, time, tsval); in logMessage()
371 String callId = null; in logMessage() local
373 callId = cid.getCallId(); in logMessage()
379 logMessage(encoded, from, to, sender, callId, firstLine, status, tid, time, tsval); in logMessage()
/external/webkit/Source/WebCore/inspector/front-end/
DTestController.js36 notifyDone: function(callId, result) argument
39 … RuntimeAgent.evaluate("didEvaluateForTestInFrontend(" + callId + ", " + message + ")", "test");
43 WebInspector.evaluateForTestInFrontend = function(callId, script) argument
54 WebInspector.TestController.prototype.notifyDone(callId, result); argument
56 WebInspector.testController.prototype.notifyDone(callId, e.toString()); argument
/external/nist-sip/java/javax/sip/message/
DMessageFactory.java16 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() argument
21 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() argument
26 Request createRequest(URI requestURI, String method, CallIdHeader callId, in createRequest() argument
32 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() argument
37 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() argument
42 Response createResponse(int statusCode, CallIdHeader callId, in createResponse() argument
/external/webkit/Source/WebKit/mac/WebInspector/
DWebInspectorPrivate.h36 - (void)evaluateInFrontend:(id)sender callId:(long)callId script:(NSString *)script;
/external/webkit/Source/WebCore/inspector/
DCodeGeneratorInspector.pm484 push(@function, " reportProtocolError(&callId, InvalidParams, protocolErrors);");
489 push(@function, " reportProtocolError(&callId, ServerError, error);");
538 message->setNumber("id", *callId);
621 if (!callIdValue->asNumber(&callId)) {
628 …reportProtocolError(&callId, InvalidRequest, "Invalid message format. 'method' property wasn't fou…
634 …reportProtocolError(&callId, InvalidRequest, "Invalid message format. The type of 'method' propert…
640 …reportProtocolError(&callId, MethodNotFound, makeString("Invalid method name was received. '", met…
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
DReferencesParser.java46 String callId = lexer.byteStringNoSemicolon(); in parse() local
48 references.setCallId(callId); in parse()
DReplacesParser.java52 String callId = lexer.byteStringNoSemicolon(); in parse() local
55 replaces.setCallId(callId); in parse()
DJoinParser.java50 String callId = lexer.byteStringNoSemicolon(); in parse() local
53 join.setCallId(callId); in parse()
/external/smack/src/org/jivesoftware/smack/sasl/
DSASLFacebookConnect.java117 Long callId = new GregorianCalendar().getTimeInMillis()/1000; in challengeReceived() local
120 +"call_id="+callId in challengeReceived()
134 … +"call_id="+callId+"&" in challengeReceived()
/external/nist-sip/java/javax/sip/header/
DCallIdHeader.java9 void setCallId(String callId) throws ParseException; in setCallId() argument
/external/webkit/Source/WebKit/gtk/webkit/
Dwebkitwebinspectorprivate.h38 WEBKIT_API void webkit_web_inspector_execute_script(WebKitWebInspector*, long callId, const gchar* …
/external/nist-sip/java/gov/nist/javax/sip/
DLogRecordFactory.java35 String firstLine, String tid, String callId, long timestampVal); in createLogRecord() argument

123