HomeSort by relevance Sort by last modified time
    Searched defs:telecomCall (Results 1 - 3 of 3) sorted by null

  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
UiCallManager.java 110 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 = mCallMapping.get(uiCall)
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/call/
ExternalCallList.java 50 public void onCallAdded(Call telecomCall) {
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) {
61 if (!mExternalCalls.contains(telecomCall)) {
66 mExternalCalls.remove(telecomCall);
67 telecomCall.unregisterCallback(mTelecomCallCallback);
68 notifyExternalCallRemoved(telecomCall);
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelecomManagerFacade.java 274 public void telecomCall(
282 Log.w("Function telecomCall is deprecated; please use a URI-specific call");

Completed in 1716 milliseconds