Searched refs:telecomCall (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/call/
H A DDialerCallDelegate.java24 DialerCall getDialerCallFromTelecomCall(Call telecomCall); argument
H A DExternalCallList.java50 public void onCallAdded(Call telecomCall) { argument
51 if (!telecomCall.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) {
54 mExternalCalls.add(telecomCall);
55 telecomCall.registerCallback(mTelecomCallCallback, new Handler(Looper.getMainLooper()));
56 notifyExternalCallAdded(telecomCall);
60 public void onCallRemoved(Call telecomCall) { argument
61 if (!mExternalCalls.contains(telecomCall)) {
66 mExternalCalls.remove(telecomCall);
67 telecomCall.unregisterCallback(mTelecomCallCallback);
68 notifyExternalCallRemoved(telecomCall);
86 isCallTracked(@onNull android.telecom.Call telecomCall) argument
[all...]
H A DCallList.java116 final Context context, final android.telecom.Call telecomCall, LatencyReport latencyReport) {
119 new DialerCall(context, this, telecomCall, latencyReport, true /* registerCallback */);
130 String number = TelecomCallUtil.getNumber(telecomCall);
238 public DialerCall getDialerCallFromTelecomCall(Call telecomCall) { argument
239 return mCallByTelecomCall.get(telecomCall);
282 public void onCallRemoved(Context context, android.telecom.Call telecomCall) { argument
283 if (mCallByTelecomCall.containsKey(telecomCall)) {
284 DialerCall call = mCallByTelecomCall.get(telecomCall);
330 * @param telecomCall
332 public void onInternalCallMadeExternal(Context context, android.telecom.Call telecomCall) { argument
115 onCallAdded( final Context context, final android.telecom.Call telecomCall, LatencyReport latencyReport) argument
[all...]
H A DDialerCall.java290 Call telecomCall,
296 mTelecomCall = telecomCall;
287 DialerCall( Context context, DialerCallDelegate dialerCallDelegate, Call telecomCall, LatencyReport latencyReport, boolean registerCallback) argument
/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
H A DInCallServiceImpl.java49 public void onCallAdded(Call telecomCall) { argument
50 super.onCallAdded(telecomCall);
52 Log.d(TAG, "onCallAdded: " + telecomCall + ", state: " + telecomCall);
55 telecomCall.registerCallback(mCallListener);
56 mCallListener.onStateChanged(telecomCall, telecomCall.getState());
59 callback.onTelecomCallAdded(telecomCall);
64 public void onCallRemoved(Call telecomCall) { argument
66 Log.d(TAG, "onCallRemoved: " + telecomCall);
132 onTelecomCallAdded(Call telecomCall) argument
133 onTelecomCallRemoved(Call telecomCall) argument
[all...]
H A DUiCallManager.java110 for (Call telecomCall : mInCallService.getCalls()) {
111 UiCall uiCall = doTelecomCallAdded(telecomCall);
127 public void onTelecomCallAdded(Call telecomCall) {
128 doTelecomCallAdded(telecomCall);
132 public void onTelecomCallRemoved(Call telecomCall) {
133 doTelecomCallRemoved(telecomCall);
179 Call telecomCall = mCallMapping.get(uiCall);
180 if (telecomCall != null) {
181 telecomCall.answer(0);
191 Call telecomCall
335 doTelecomCallAdded(final Call telecomCall) argument
356 doTelecomCallRemoved(Call telecomCall) argument
385 getOrCreateCallContainer(Call telecomCall) argument
398 updateCallContainerFromTelecom(UiCall uiCall, Call telecomCall) argument
624 onStateChanged(Call telecomCall, int state) argument
637 onParentChanged(Call telecomCall, Call parent) argument
642 onCallDestroyed(Call telecomCall) argument
649 onDetailsChanged(Call telecomCall, Call.Details details) argument
654 onVideoCallChanged(Call telecomCall, InCallService.VideoCall videoCall) argument
659 onCannedTextResponsesLoaded(Call telecomCall, List<String> cannedTextResponses) argument
665 onChildrenChanged(Call telecomCall, List<Call> children) argument
669 doCallUpdated(Call telecomCall) argument
[all...]
/packages/apps/Dialer/java/com/android/incallui/latencyreport/
H A DLatencyReport.java69 public LatencyReport(android.telecom.Call telecomCall) { argument
70 mWasIncoming = telecomCall.getState() == android.telecom.Call.STATE_RINGING;
71 Bundle extras = telecomCall.getDetails().getIntentExtras();
/packages/apps/Dialer/java/com/android/incallui/
H A DInCallPresenter.java134 android.telecom.Call telecomCall, String remainingPostDialSequence) {
135 final DialerCall call = mCallList.getDialerCallFromTelecomCall(telecomCall);
139 "DialerCall not found in call list: " + telecomCall);
147 android.telecom.Call telecomCall, android.telecom.Call.Details details) {
148 final DialerCall call = mCallList.getDialerCallFromTelecomCall(telecomCall);
152 "DialerCall not found in call list: " + telecomCall);
157 && !mExternalCallList.isCallTracked(telecomCall)) {
160 LogUtil.i("InCallPresenter.onDetailsChanged", "Call became external: " + telecomCall);
161 mCallList.onInternalCallMadeExternal(mContext, telecomCall);
162 mExternalCallList.onCallAdded(telecomCall);
[all...]
H A DExternalCallNotifier.java427 public DialerCall getDialerCallFromTelecomCall(Call telecomCall) { argument

Completed in 511 milliseconds