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

1 2 3

  /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/
HandoverActivity.java 41 int callId = launchingIntent.getIntExtra(EXTRA_CALL_ID, 0);
42 Log.i(this, "showing fullscreen upgrade ux for call id %d", callId);
46 .getConnectionById(callId);
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/Dialer/java/com/android/incallui/
PostCharDialogFragment.java 35 private String callId;
40 public PostCharDialogFragment(String callId, String postDialStr) {
41 this.callId = callId;
50 callId = savedInstanceState.getString(STATE_CALL_ID);
66 TelecomAdapter.getInstance().postDialContinue(callId, true);
86 TelecomAdapter.getInstance().postDialContinue(callId, false);
93 outState.putString(STATE_CALL_ID, callId);
ConferenceParticipantListAdapter.java 164 String callId = call.getId();
166 if (participantsByCallId.containsKey(callId)) {
167 ParticipantInfo participantInfo = participantsByCallId.get(callId);
169 refreshView(callId);
181 * @param callId The call id.
183 private void refreshView(String callId) {
190 if (rowCallId.equals(callId)) {
261 * @param callId The call id.
264 /* package */ void updateContactInfo(String callId, ContactCacheEntry entry) {
265 if (participantsByCallId.containsKey(callId)) {
    [all...]
  /frameworks/base/core/java/android/view/textclassifier/
GenerateLinksLogger.java 92 final String callId = UUID.randomUUID().toString();
93 writeStats(callId, callingPackageName, null, totalStats, text, latencyMs);
95 writeStats(callId, callingPackageName, entry.getKey(), entry.getValue(), text,
114 private void writeStats(String callId, String callingPackageName, @Nullable String entityType,
118 .addTaggedData(MetricsEvent.FIELD_LINKIFY_CALL_ID, callId)
133 final String callId = Objects.toString(
147 String.format(Locale.US, "%s:%s %d links (%d/%d chars) %dms %s", callId, entityType,
  /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);
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorSimCallManager.java 240 int callId = new Random().nextInt();
241 return String.format("simulator_phone_call_%x", Math.abs(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 251 int callId = entry.getKey().intValue();
253 if (!containsCallId(externalCallStates, callId)) {
289 * @param callId The call Id.
292 public Connection getConnectionById(int callId) {
293 return mExternalConnections.get(callId);
413 * @param callId The call Id.
416 private boolean containsCallId(List<ImsExternalCallState> externalCallStates, int callId) {
422 if (state.getCallId() == callId) {

Completed in 668 milliseconds

1 2 3