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

/packages/services/Telecomm/src/com/android/server/telecom/
H A DConnectionServiceWrapper.java67 public void handleCreateConnectionComplete(String callId, ConnectionRequest request, argument
73 logIncoming("handleCreateConnectionComplete %s", callId);
75 .handleCreateConnectionComplete(callId, request, connection);
84 public void setActive(String callId) { argument
89 logIncoming("setActive %s", callId);
90 Call call = mCallIdMapper.getCall(callId);
104 public void setRinging(String callId) { argument
109 logIncoming("setRinging %s", callId);
110 Call call = mCallIdMapper.getCall(callId);
124 public void setVideoProvider(String callId, IVideoProvide argument
142 setDialing(String callId) argument
162 setDisconnected(String callId, DisconnectCause disconnectCause) argument
183 setOnHold(String callId) argument
203 setRingbackRequested(String callId, boolean ringback) argument
223 removeCall(String callId) argument
246 setConnectionCapabilities(String callId, int connectionCapabilities) argument
267 setConnectionProperties(String callId, int connectionProperties) argument
285 setIsConferenced(String callId, String conferenceCallId) argument
311 setConferenceMergeFailed(String callId) argument
342 addConferenceCall(String callId, ParcelableConference parcelableConference) argument
397 onPostDialWait(String callId, String remaining) argument
417 onPostDialChar(String callId, char nextChar) argument
454 setVideoState(String callId, int videoState) argument
472 setIsVoipAudioMode(String callId, boolean isVoip) argument
490 setStatusHints(String callId, StatusHints statusHints) argument
508 putExtras(String callId, Bundle extras) argument
526 removeExtras(String callId, List<String> keys) argument
544 setAddress(String callId, Uri address, int presentation) argument
562 setCallerDisplayName( String callId, String callerDisplayName, int presentation) argument
582 setConferenceableConnections( String callId, List<String> conferenceableCallIds) argument
610 addExistingConnection(String callId, ParcelableConnection connection) argument
628 onConnectionEvent(String callId, String event, Bundle extras) argument
904 removeCall(String callId, DisconnectCause disconnectCause) argument
1028 handleCreateConnectionComplete( String callId, ConnectionRequest request, ParcelableConnection connection) argument
[all...]
H A DInCallAdapter.java48 public void answerCall(String callId, int videoState) { argument
54 Log.d(this, "answerCall(%s,%d)", callId, videoState);
55 Call call = mCallIdMapper.getCall(callId);
59 Log.w(this, "answerCall, unknown call id: %s", callId);
71 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) { argument
77 Log.d(this, "rejectCall(%s,%b,%s)", callId, rejectWithMessage, textMessage);
78 Call call = mCallIdMapper.getCall(callId);
82 Log.w(this, "setRingback, unknown call id: %s", callId);
94 public void playDtmfTone(String callId, char digit) { argument
100 Log.d(this, "playDtmfTone(%s,%c)", callId, digi
117 stopDtmfTone(String callId) argument
140 postDialContinue(String callId, boolean proceed) argument
163 disconnectCall(String callId) argument
186 holdCall(String callId) argument
208 unholdCall(String callId) argument
230 phoneAccountSelected(String callId, PhoneAccountHandle accountHandle, boolean setDefault) argument
287 conference(String callId, String otherCallId) argument
310 splitFromConference(String callId) argument
332 mergeConference(String callId) argument
354 swapConference(String callId) argument
376 pullExternalCall(String callId) argument
398 sendCallEvent(String callId, String event, Bundle extras) argument
420 putExtras(String callId, Bundle extras) argument
442 removeExtras(String callId, List<String> keys) argument
[all...]
H A DAnalytics.java66 public String callId; field in class:Analytics.CallInfoImpl
86 CallInfoImpl(String callId, int callDirection) { argument
87 this.callId = callId;
96 this.callId = other.callId;
121 Log.d(TAG, "setting startTime for call " + callId + " to " + startTime);
127 Log.d(TAG, "setting endTime for call " + callId + " to " + endTime);
133 Log.d(TAG, "setting isAdditional for call " + callId + " to " + isAdditional);
139 Log.d(TAG, "setting isInterrupted for call " + callId
256 initiateCallAnalytics(String callId, int direction) argument
[all...]
H A DCallIdMapper.java84 String callId = getCallId(callToReplace);
85 mCalls.put(callId, newCall);
106 void removeCall(String callId) { argument
107 mCalls.remove(callId);
118 String callId = null;
120 callId = (String) objId;
123 return mCalls.getValue(callId);
H A DCall.java400 String callId,
414 mId = callId;
455 String callId,
470 this(callId, context, callsManager, lock, repository, contactsAsyncHelper,
399 Call( String callId, Context context, CallsManager callsManager, TelecomSystem.SyncRoot lock, ConnectionServiceRepository repository, ContactsAsyncHelper contactsAsyncHelper, CallerInfoAsyncQueryFactory callerInfoAsyncQueryFactory, Uri handle, GatewayInfo gatewayInfo, PhoneAccountHandle connectionManagerPhoneAccountHandle, PhoneAccountHandle targetPhoneAccountHandle, int callDirection, boolean shouldAttachToExistingConnection, boolean isConference) argument
454 Call( String callId, Context context, CallsManager callsManager, TelecomSystem.SyncRoot lock, ConnectionServiceRepository repository, ContactsAsyncHelper contactsAsyncHelper, CallerInfoAsyncQueryFactory callerInfoAsyncQueryFactory, Uri handle, GatewayInfo gatewayInfo, PhoneAccountHandle connectionManagerPhoneAccountHandle, PhoneAccountHandle targetPhoneAccountHandle, int callDirection, boolean shouldAttachToExistingConnection, boolean isConference, long connectTimeMillis) argument
H A DCallsManager.java1549 String callId,
1561 callId,
1947 * @param callId The id of the new call.
1951 Call createCallForExistingConnection(String callId, ParcelableConnection connection) { argument
1953 callId,
1548 createConferenceCall( String callId, PhoneAccountHandle phoneAccount, ParcelableConference parcelableConference) argument
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
H A DTelecomAdapter.java56 private android.telecom.Call getTelecomCallById(String callId) { argument
57 Call call = CallList.getInstance().getCallById(callId);
61 void answerCall(String callId, int videoState) { argument
62 android.telecom.Call call = getTelecomCallById(callId);
66 Log.e(this, "error answerCall, call not in call list: " + callId);
70 void rejectCall(String callId, boolean rejectWithMessage, String message) { argument
71 android.telecom.Call call = getTelecomCallById(callId);
75 Log.e(this, "error rejectCall, call not in call list: " + callId);
79 void disconnectCall(String callId) { argument
80 android.telecom.Call call = getTelecomCallById(callId);
88 holdCall(String callId) argument
97 unholdCall(String callId) argument
122 separateCall(String callId) argument
131 merge(String callId) argument
147 swap(String callId) argument
179 playDtmfTone(String callId, char digit) argument
188 stopDtmfTone(String callId) argument
197 postDialContinue(String callId, boolean proceed) argument
206 phoneAccountSelected(String callId, PhoneAccountHandle accountHandle, boolean setDefault) argument
[all...]
H A DConferenceParticipantListAdapter.java127 * @param callId The call id.
131 public void onContactInfoComplete(String callId, ContactCacheEntry entry) { argument
132 update(callId, entry);
138 * @param callId The call id.
142 public void onImageLoadComplete(String callId, ContactCacheEntry entry) { argument
143 update(callId, entry);
147 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {} argument
152 * @param callId The call id.
155 private void update(String callId, ContactCacheEntry entry) { argument
158 listAdapter.updateContactInfo(callId, entr
315 refreshView(String callId) argument
384 updateContactInfo(String callId, ContactCacheEntry entry) argument
[all...]
H A DContactInfoCache.java99 public ContactCacheEntry getInfo(String callId) { argument
100 return mInfoMap.get(callId);
176 final String callId = call.getId();
177 final ContactCacheEntry cacheEntry = mInfoMap.get(callId);
178 Set<ContactInfoCacheCallback> callBacks = mCallBacks.get(callId);
184 callback.onContactInfoComplete(callId, cacheEntry);
200 mCallBacks.put(callId, callBacks);
216 final String callId = call.getId();
223 ContactCacheEntry cacheEntry = mInfoMap.get(callId);
228 cacheEntry = buildEntry(mContext, callId, callerInf
266 PhoneNumberServiceListener(String callId) argument
410 buildEntry(Context context, String callId, CallerInfo info, int presentation, boolean isIncoming) argument
578 sendInfoNotifications(String callId, ContactCacheEntry entry) argument
587 sendImageNotifications(String callId, ContactCacheEntry entry) argument
596 sendContactInteractionsNotifications(String callId, ContactCacheEntry entry) argument
605 clearCallbacks(String callId) argument
650 onContactInfoComplete(String callId, ContactCacheEntry entry) argument
651 onImageLoadComplete(String callId, ContactCacheEntry entry) argument
652 onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) argument
[all...]
H A DPostCharDialogFragment.java43 public PostCharDialogFragment(String callId, String postDialStr) { argument
44 mCallId = callId;
H A DCallList.java217 * @param callId The call id to get updates for.
220 public void addCallUpdateListener(String callId, CallUpdateListener listener) { argument
221 List<CallUpdateListener> listeners = mCallUpdateListenerMap.get(callId);
224 mCallUpdateListenerMap.put(callId, listeners);
232 * @param callId The call id to remove the listener for.
235 public void removeCallUpdateListener(String callId, CallUpdateListener listener) { argument
236 List<CallUpdateListener> listeners = mCallUpdateListenerMap.get(callId);
381 public Call getCallById(String callId) { argument
382 return mCallById.get(callId);
389 public List<String> getTextResponses(String callId) { argument
[all...]
H A DCallCardPresenter.java104 public void onContactInfoComplete(String callId, ContactCacheEntry entry) { argument
107 presenter.onContactInfoComplete(callId, entry, mIsPrimary);
112 public void onImageLoadComplete(String callId, ContactCacheEntry entry) { argument
115 presenter.onImageLoadComplete(callId, entry);
120 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) { argument
123 presenter.onContactInteractionsInfoComplete(callId, entry);
591 private void onContactInfoComplete(String callId, ContactCacheEntry entry, boolean isPrimary) { argument
593 (isPrimary && mPrimary != null && TextUtils.equals(callId, mPrimary.getId())) ||
594 (!isPrimary && mSecondary != null && TextUtils.equals(callId, mSecondary.getId()));
598 Log.w(this, "Dropping stale contact lookup info for " + callId);
610 onImageLoadComplete(String callId, ContactCacheEntry entry) argument
624 onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) argument
[all...]
H A DStatusBarNotifier.java208 public void onContactInfoComplete(String callId, ContactCacheEntry entry) {
209 Call call = CallList.getInstance().getCallById(callId);
217 public void onImageLoadComplete(String callId, ContactCacheEntry entry) {
218 Call call = CallList.getInstance().getCallById(callId);
225 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {}
H A DInCallPresenter.java838 String callId = call.getId();
839 TelecomAdapter.getInstance().phoneAccountSelected(callId, accountHandle, setDefault);
849 String callId = call.getId();
850 TelecomAdapter.getInstance().disconnectCall(callId);
1087 public void onPostDialCharWait(String callId, String chars) { argument
1089 mInCallActivity.showPostCharWaitDialog(callId, chars);
H A DInCallActivity.java850 public void showPostCharWaitDialog(String callId, String chars) { argument
852 final PostCharDialogFragment fragment = new PostCharDialogFragment(callId, chars);
860 mShowPostCharWaitDialogCallId = callId;
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DInCallServiceFixture.java86 public void setPostDial(String callId, String remaining) throws RemoteException { argument
87 mPostDialWaitById.remove(callId);
88 mPostDialById.put(callId, remaining);
92 public void setPostDialWait(String callId, String remaining) throws RemoteException { argument
93 mPostDialById.remove(callId);
94 mPostDialWaitById.put(callId, remaining);
119 public void onConnectionEvent(String callId, String event, Bundle extras) argument
H A DConnectionServiceFixture.java212 public void abort(String callId) throws RemoteException { } argument
215 public void answerVideo(String callId, int videoState) throws RemoteException { } argument
218 public void answer(String callId) throws RemoteException { } argument
221 public void reject(String callId) throws RemoteException { argument
222 rejectedCallIds.add(callId);
226 public void rejectWithMessage(String callId, String message) throws RemoteException { } argument
229 public void disconnect(String callId) throws RemoteException { } argument
232 public void silence(String callId) throws RemoteException { } argument
235 public void hold(String callId) throws RemoteException { } argument
238 public void unhold(String callId) throw argument
245 playDtmfTone(String callId, char digit) argument
248 stopDtmfTone(String callId) argument
251 conference(String conferenceCallId, String callId) argument
256 splitFromConference(String callId) argument
265 onPostDialContinue(String callId, boolean proceed) argument
268 pullExternalCall(String callId) argument
271 sendCallEvent(String callId, String event, Bundle extras) argument
274 onExtrasChanged(String callId, Bundle extras) argument
[all...]
H A DBasicCallTests.java263 String callId = startOutgoingPhoneCallWithNoPhoneAccount("650-555-1212",
266 mInCallServiceFixtureX.getCall(callId).getState());
268 mInCallServiceFixtureY.getCall(callId).getState());
269 mInCallServiceFixtureX.mInCallAdapter.phoneAccountSelected(callId,
839 private void disconnectCall(String callId, String connectionId) throws Exception { argument
841 assertEquals(Call.STATE_DISCONNECTED, mInCallServiceFixtureX.getCall(callId).getState());
842 assertEquals(Call.STATE_DISCONNECTED, mInCallServiceFixtureY.getCall(callId).getState());
H A DTelecomSystemTest.java226 public IdPair(String connectionId, String callId) { argument
228 this.mCallId = callId;
/packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
H A DCallScreeningServiceFilter.java80 public void allowCall(String callId) { argument
85 Log.d(this, "allowCall(%s)", callId);
86 if (mCall != null && mCall.getId().equals(callId)) {
94 Log.w(this, "allowCall, unknown call id: %s", callId);
106 String callId,
115 + "shouldShowNotification: %b", callId, shouldReject,
117 if (mCall != null && mCall.getId().equals(callId)) {
125 Log.w(this, "disallowCall, unknown call id: %s", callId);
105 disallowCall( String callId, boolean shouldReject, boolean shouldAddToCallLog, boolean shouldShowNotification) argument
/packages/providers/CallLogProvider/src/com/android/calllogbackup/
H A DCallLogBackupAgent.java315 final int callId;
317 callId = Integer.parseInt(data.getKey());
329 call.id = callId;
374 Log.e(TAG, "Error reading call data for " + callId, e);
529 private void removeCallFromBackup(BackupDataOutput output, int callId) { argument
531 output.writeEntityHeader(Integer.toString(callId), -1);
533 Log.e(TAG, "Failed to remove call: " + callId, e);
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogAdapter.java760 * @param callId The call to retrieve the day group for.
763 private int getDayGroupForCall(long callId) { argument
764 if (mDayGroups.containsKey(callId)) {
765 return mDayGroups.get(callId);
/packages/services/Telephony/src/com/android/services/telephony/
H A DTelephonyConnection.java397 String callId) {
398 setTelecomCallId(callId);
396 TelephonyConnection(com.android.internal.telephony.Connection originalConnection, String callId) argument
/packages/services/Telephony/src/com/android/phone/
H A DPhoneInterfaceManager.java217 public final String callId; field in class:PhoneInterfaceManager.IncomingThirdPartyCallArgs
220 public IncomingThirdPartyCallArgs(ComponentName component, String callId, argument
223 this.callId = callId;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java4336 final long callId = c.getLong(0);
4349 String.valueOf(callId),

Completed in 315 milliseconds