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

12

/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/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
H A DTelecomCallFacade.java70 @Rpc(description = "Disconnect call by callId.")
72 @RpcParameter(name = "callId")
73 String callId) {
74 InCallServiceImpl.callDisconnect(callId);
77 @Rpc(description = "Hold call by callId")
79 @RpcParameter(name = "callId")
80 String callId) {
81 InCallServiceImpl.holdCall(callId);
84 @Rpc(description = "Merge call to conference by callId")
86 @RpcParameter(name = "callId")
71 telecomCallDisconnect( @pcParametername = �) String callId) argument
78 telecomCallHold( @pcParametername = �) String callId) argument
85 telecomCallMergeToConf( @pcParametername = �) String callId) argument
92 telecomCallSplitFromConf( @pcParametername = �) String callId) argument
99 telecomCallUnhold( @pcParametername = �) String callId) argument
127 telecomCallGetCallChildren( @pcParametername = �) String callId) argument
132 telecomCallGetCallParent( @pcParametername = �) String callId) argument
137 telecomCallSwapCallsInConference( @pcParametername = �) String callId) argument
142 telecomCallPlayDtmfTone( @pcParametername = �) String callId, @RpcParameter(name = �) String digitString) argument
151 telecomCallStopDtmfTone( @pcParametername = �) String callId) argument
156 telecomCallGetCannedTextResponses( @pcParametername = �) String callId) argument
166 telecomCallGetCallState( @pcParametername = �) String callId) argument
191 telecomCallAnswer( @pcParametername = �) String callId, @RpcParameter(name = �) String videoState) argument
200 telecomCallReject( @pcParametername = �) String callId, @RpcParameter(name = �) String message) argument
209 telecomCallStartListeningForEvent( @pcParametername = �) String callId, @RpcParameter(name = �) String event) argument
218 telecomCallStopListeningForEvent( @pcParametername = �) String callId, @RpcParameter(name = �) String event) argument
227 telecomCallGetDetails( @pcParametername = �) String callId) argument
234 telecomCallGetCapabilities( @pcParametername = �) String callId) argument
241 telecomCallGetProperties( @pcParametername = �) String callId) argument
248 telecomCallVideoStartListeningForEvent( @pcParametername = �) String callId, @RpcParameter(name = �) String event) argument
257 telecomCallVideoStopListeningForEvent( @pcParametername = �) String callId, @RpcParameter(name = �) String event) argument
266 telecomCallVideoGetState( @pcParametername = �) String callId) argument
273 telecomCallVideoSendSessionModifyRequest( @pcParametername = �) String callId, @RpcParameter(name = �) String videoState, @RpcParameter(name = �) String videoQuality) argument
284 telecomCallVideoSendSessionModifyResponse( @pcParametername = �) String callId, @RpcParameter(name = �) String videoState, @RpcParameter(name = �) String videoQuality) argument
[all...]
H A DInCallServiceImpl.java64 public static void onCallAdded(String callId, Call call) { argument
69 new CallEvent<Call>(callId, call));
73 public static void onCallRemoved(String callId, Call call) { argument
78 new CallEvent<Call>(callId, call));
118 CallEvent(String callId, EventType event) { argument
119 mCallId = callId;
134 VideoCallEvent(String callId, EventType event) { argument
135 super(callId, event);
170 public CallCallback(String callId, int events) { argument
173 mCallId = callId;
378 VideoCallCallback(String callId, int listeners) argument
651 getCallById(String callId) argument
662 getCallCallbackById(String callId) argument
673 getVideoCallById(String callId) argument
686 getVideoCallListenerById(String callId) argument
701 callDisconnect(String callId) argument
711 holdCall(String callId) argument
720 mergeCallsInConference(String callId) argument
729 splitCallFromConf(String callId) argument
738 unholdCall(String callId) argument
767 callGetState(String callId) argument
776 callGetDetails(String callId) argument
786 callGetCallProperties(String callId) argument
796 callGetCallCapabilities(String callId) argument
854 callStartListeningForEvent(String callId, String strEvent) argument
873 callStopListeningForEvent(String callId, String strEvent) argument
891 videoCallStartListeningForEvent(String callId, String strEvent) argument
909 videoCallStopListeningForEvent(String callId, String strEvent) argument
927 videoCallGetState(String callId) argument
942 videoCallSendSessionModifyRequest( String callId, String videoStateString, String videoQualityString) argument
966 videoCallSendSessionModifyResponse( String callId, String videoStateString, String videoQualityString) argument
990 callAnswer(String callId, String videoState) argument
1007 callReject(String callId, String message) argument
1017 getCallParent(String callId) argument
1028 getCallChildren(String callId) argument
1043 swapCallsInConference(String callId) argument
1052 callPlayDtmfTone(String callId, char digit) argument
1061 callStopDtmfTone(String callId) argument
1070 callGetCannedTextResponses(String callId) argument
[all...]
/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
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/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/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/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 1293 milliseconds

12