Home | History | Annotate | Download | only in telecom

Lines Matching defs:activeCall

477         Call activeCall = callsManager.getActiveCall();
482 Log.i(TAG, "Active: %s\nRinging: %s\nHeld: %s", activeCall, ringingCall, heldCall);
493 if (activeCall != null) {
494 callsManager.disconnectCall(activeCall);
503 if (activeCall != null && activeCall.can(Connection.CAPABILITY_SWAP_CONFERENCE)) {
504 activeCall.swapConference();
514 } else if (activeCall != null && activeCall.can(Connection.CAPABILITY_HOLD)) {
515 callsManager.holdCall(activeCall);
519 if (activeCall != null) {
520 if (activeCall.can(Connection.CAPABILITY_MERGE_CONFERENCE)) {
521 activeCall.mergeConference();
524 List<Call> conferenceable = activeCall.getConferenceableCalls();
526 callsManager.conference(activeCall, conferenceable.get(0));
682 Call activeCall = callsManager.getActiveCall();
700 int numActiveCalls = activeCall == null ? 0 : 1;
707 if (activeCall != null && activeCall.isConference()) {
708 if (activeCall.can(Connection.CAPABILITY_SWAP_CONFERENCE)) {
711 numHeldCalls = activeCall.wasConferencePreviouslyMerged() ? 0 : 1;
712 } else if (activeCall.can(Connection.CAPABILITY_MERGE_CONFERENCE)) {
716 for (Call childCall : activeCall.getChildCalls()) {