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

  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
UiCallManager.java 163 for (Call telecomCall : mInCallService.getCalls()) {
164 UiCall uiCall = doTelecomCallAdded(telecomCall);
180 public void onTelecomCallAdded(Call telecomCall) {
181 doTelecomCallAdded(telecomCall);
185 public void onTelecomCallRemoved(Call telecomCall) {
186 doTelecomCallRemoved(telecomCall);
240 Call telecomCall = mCallMapping.get(uiCall);
241 if (telecomCall != null) {
242 telecomCall.answer(0);
252 Call telecomCall = mCallMapping.get(uiCall)
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/call/
ExternalCallList.java 51 public void onCallAdded(Call telecomCall) {
53 telecomCall.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL));
54 externalCalls.add(telecomCall);
55 telecomCall.registerCallback(telecomCallCallback, new Handler(Looper.getMainLooper()));
56 notifyExternalCallAdded(telecomCall);
60 public void onCallRemoved(Call telecomCall) {
61 if (!externalCalls.contains(telecomCall)) {
66 externalCalls.remove(telecomCall);
67 telecomCall.unregisterCallback(telecomCallCallback);
68 notifyExternalCallRemoved(telecomCall);
    [all...]
DialerCall.java 123 private final Call telecomCall;
344 Call telecomCall,
350 this.telecomCall = telecomCall;
365 this.telecomCall.registerCallback(telecomCallCallback);
378 telecomCall = null;
465 return telecomCall;
469 return telecomCall.getDetails().getStatusHints();
543 LogUtil.v("DialerCall.updateFromTelecomCall", telecomCall.toString());
545 videoTechManager.dispatchCallStateChanged(telecomCall.getState(), getAccountHandle())
    [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 416 milliseconds