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

1 2

  /packages/apps/Dialer/java/com/android/incallui/speakeasy/
SpeakEasyCallManager.java 39 void onCallRemoved(@NonNull DialerCall call);
SpeakEasyCallManagerStub.java 40 public void onCallRemoved(DialerCall call) {}
  /packages/apps/Car/Dialer/src/com/android/car/dialer/
CallListener.java 15 void onCallRemoved(UiCall call);
TelecomActivity.java 424 public void onCallRemoved(UiCall call) {
426 Log.d(TAG, "onCallRemoved");
431 .onCallRemoved(call));
OngoingCallFragment.java 616 public void onCallRemoved(UiCall call) {
618 Log.d(TAG, "onCallRemoved(); call: " + call);
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallWakeLockController.java 48 public void onCallRemoved(Call call) {
ProximitySensorManager.java 41 public void onCallRemoved(Call call) {
49 super.onCallRemoved(call);
StatusBarNotifier.java 50 public void onCallRemoved(Call call) {
CallsManagerListenerBase.java 32 public void onCallRemoved(Call call) {
HeadsetMediaButton.java 159 public void onCallRemoved(Call call) {
172 onCallRemoved(call);
PhoneStateBroadcaster.java 62 public void onCallRemoved(Call call) {
CallRecordingTonePlayer.java 87 public void onCallRemoved(Call call) {
  /packages/apps/Dialer/java/com/android/incallui/
InCallServiceImpl.java 73 public void onCallRemoved(Call call) {
74 Trace.beginSection("InCallServiceImpl.onCallRemoved");
75 speakEasyCallManager.onCallRemoved(CallList.getInstance().getDialerCallFromTelecomCall(call));
77 InCallPresenter.getInstance().onCallRemoved(call);
  /packages/apps/Dialer/java/com/android/incallui/call/
ExternalCallList.java 60 public void onCallRemoved(Call telecomCall) {
63 LogUtil.i("ExternalCallList.onCallRemoved", "attempted to remove unregistered call");
110 onCallRemoved(call);
  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
InCallServiceImpl.java 64 public void onCallRemoved(Call telecomCall) {
66 Log.d(TAG, "onCallRemoved: " + telecomCall);
72 super.onCallRemoved(telecomCall);
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
ClusterInCallService.java 54 public void onCallRemoved(Call call) {
56 Log.d(TAG, "onCallRemoved");
  /frameworks/base/telecomm/java/android/telecom/
Phone.java 92 public void onCallRemoved(Phone phone, Call call) { }
380 listener.onCallRemoved(this, call);
InCallService.java 298 public void onCallRemoved(Phone phone, Call call) {
299 InCallService.this.onCallRemoved(call);
518 public void onCallRemoved(Call call) {
    [all...]
  /cts/tests/tests/telecom3/src/android/telecom/cts/
SelfManagedAwareInCallService.java 117 public void onCallRemoved(Call call) {
118 super.onCallRemoved(call);
  /packages/apps/Car/Dialer/src/com/android/car/dialer/ui/
InCallFragment.java 165 public void onCallRemoved(UiCall call) {
  /packages/services/Telecomm/src/com/android/server/telecom/ui/
IncomingCallNotifier.java 115 public void onCallRemoved(Call call) {
  /cts/tests/tests/telecom/src/android/telecom/cts/
MockInCallService.java 50 public void onCallRemoved(Call call, int numCalls) {};
258 public void onCallRemoved(Call call) {
259 super.onCallRemoved(call);
266 getCallbacks().onCallRemoved(call, mCalls.size() + mConferenceCalls.size());
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestCallList.java 41 public void onCallRemoved(Call call) {}
155 l.onCallRemoved(call);
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
ConnectionServiceFocusManagerTest.java 258 mCallsManagerListener.onCallRemoved((Call) mActiveCall);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
InCallServiceImpl.java 71 public static void onCallRemoved(String callId, Call call) {
72 Log.d("CallListener:onCallRemoved()");
263 * onCallAdded/onCallRemoved.
602 public void onCallRemoved(Call call) {
603 Log.d("onCallRemoved: " + call.toString());
609 CallListener.onCallRemoved(id, call);
    [all...]

Completed in 269 milliseconds

1 2