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

1 2

  /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...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
ReferencesParser.java 46 String callId = lexer.byteStringNoSemicolon();
48 references.setCallId(callId);
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()
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()
  /packages/services/Telecomm/src/com/android/server/telecom/ui/
ConfirmCallDialogActivity.java 42 final String callId = getIntent().getStringExtra(EXTRA_OUTGOING_CALL_ID);
45 showDialog(callId, ongoingAppName);
48 private void showDialog(final String callId, CharSequence ongoingAppName) {
49 Log.i(this, "showDialog: confirming callId=%s, ongoing=%s", callId, ongoingAppName);
60 proceedWithCall.putExtra(EXTRA_OUTGOING_CALL_ID, callId);
73 cancelCall.putExtra(EXTRA_OUTGOING_CALL_ID, callId);
86 cancelCall.putExtra(EXTRA_OUTGOING_CALL_ID, callId);
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
IncomingSelfManagedCallActivity.java 42 int callId = launchingIntent.getIntExtra(EXTRA_CALL_ID, 0);
43 Log.i(this, "showing fullscreen answer ux for call id %d", callId);
47 .getConnectionById(callId);
SelfManagedCallNotificationReceiver.java 38 int callId = intent.getIntExtra(IncomingSelfManagedCallActivity.EXTRA_CALL_ID, 0);
42 .getConnectionById(callId);
45 Log.i(this, "onReceive - answerCall %d", callId);
49 notificationManager.cancel(SelfManagedConnection.CALL_NOTIFICATION, callId);
53 Log.i(this, "onReceive - rejectCall %d", callId);
58 notificationManager.cancel(SelfManagedConnection.CALL_NOTIFICATION, callId);
  /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...]
AuthenticationHelperImpl.java 438 String callId = sipRequest.getCallId().getCallId();
442 .getCachedAuthorizationHeaders(callId);
446 "Could not find authentication headers for " + callId);
461 public void removeCachedAuthenticationHeaders(String callId) {
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/
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...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
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...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
UiCallList.java 69 int callId = uiCall.getId();
70 C call = getCall(callId);
74 mIdToCallMap.remove(callId);
77 protected C getCall(int callId) {
78 return mIdToCallMap.get(callId).second;
81 public UiCall getUiCall(int callId) {
82 return mIdToCallMap.get(callId).first;
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/
AnswerVideoCallScreen.java 35 @NonNull private final String callId;
41 @NonNull String callId, @NonNull Fragment fragment, @NonNull View view) {
42 this.callId = Assert.isNotNull(callId);
109 return callId;
SelfManagedAnswerVideoCallScreen.java 53 @NonNull private final String callId;
63 @NonNull String callId, @NonNull Fragment fragment, @NonNull View view) {
64 this.callId = Assert.isNotNull(callId);
110 return callId;
  /packages/services/Telecomm/src/com/android/server/telecom/
CallIdMapper.java 93 String callId = getCallId(callToReplace);
94 mCalls.put(callId, newCall);
115 void removeCall(String callId) {
116 mCalls.remove(callId);
127 String callId = null;
129 callId = (String) objId;
132 return mCalls.getValue(callId);
TelecomBroadcastIntentProcessor.java 143 String callId = intent.getStringExtra(
145 mCallsManager.confirmPendingCall(callId);
152 String callId = intent.getStringExtra(
154 mCallsManager.cancelPendingCall(callId);
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipManager.java 413 String callId = getCallId(incomingCallIntent);
414 if (callId == null) {
426 ISipSession session = mSipService.getPendingSession(callId,
449 String callId = getCallId(intent);
451 return ((callId != null) && (offerSd != null));
479 * @param callId the call ID of the incoming call
484 public static Intent createIncomingCallBroadcast(String callId,
487 intent.putExtra(EXTRA_CALL_ID, callId);
563 String callId = getCallId(incomingCallIntent);
564 ISipSession s = mSipService.getPendingSession(callId,
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsExternalCallTracker.java 252 int callId = entry.getKey().intValue();
254 if (!containsCallId(externalCallStates, callId)) {
290 * @param callId The call Id.
293 public Connection getConnectionById(int callId) {
294 return mExternalConnections.get(callId);
414 * @param callId The call Id.
417 private boolean containsCallId(List<ImsExternalCallState> externalCallStates, int callId) {
423 if (state.getCallId() == callId) {
  /packages/apps/Dialer/java/com/android/incallui/
ConferenceParticipantListAdapter.java 163 String callId = call.getId();
165 if (mParticipantsByCallId.containsKey(callId)) {
166 ParticipantInfo participantInfo = mParticipantsByCallId.get(callId);
168 refreshView(callId);
180 * @param callId The call id.
182 private void refreshView(String callId) {
189 if (rowCallId.equals(callId)) {
260 * @param callId The call id.
263 /* package */ void updateContactInfo(String callId, ContactCacheEntry entry) {
264 if (mParticipantsByCallId.containsKey(callId)) {
    [all...]
  /packages/providers/CallLogProvider/src/com/android/calllogbackup/
CallLogBackupAgent.java 309 final int callId;
311 callId = Integer.parseInt(data.getKey());
323 call.id = callId;
368 Log.e(TAG, "Error reading call data for " + callId, e);
523 private void removeCallFromBackup(BackupDataOutput output, int callId) {
525 output.writeEntityHeader(Integer.toString(callId), -1);
527 Log.e(TAG, "Failed to remove call: " + callId, e);
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 34 import gov.nist.javax.sip.header.CallID;
258 String callId = Utils.getInstance().generateCallIdentifier(this.getListeningPoint()
260 CallID callid = new CallID(); local
262 callid.setCallId(callId);
265 return callid;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 551 CallID cid = (CallID) this.getCallId();
587 CallID cid = (CallID) this.getCallId();
705 || nextHeader instanceof CallID
    [all...]

Completed in 1502 milliseconds

1 2