Home | History | Annotate | Download | only in sip

Lines Matching refs:foregroundCall

57     private SipCall foregroundCall = new SipCall();
68 foregroundCall = new SipCall();
101 if (foregroundCall.getState().isAlive()
112 boolean makeCallWait = foregroundCall.getState().isAlive();
170 if (foregroundCall.getState() == SipCall.State.ACTIVE) {
173 if (foregroundCall.getState() != SipCall.State.IDLE) {
178 foregroundCall.setMute(false);
180 Connection c = foregroundCall.dial(dialString);
191 foregroundCall.switchWith(backgroundCall);
193 if (foregroundCall.getState().isAlive()) foregroundCall.unhold();
203 if ((foregroundCall.getState() != SipCall.State.ACTIVE)
204 || (foregroundCall.getState() != SipCall.State.ACTIVE)) {
206 + foregroundCall.getState() + ", bg="
209 foregroundCall.merge(backgroundCall);
219 foregroundCall.merge((SipCall) that);
234 foregroundCall.clearDisconnected();
246 } else if (foregroundCall.getState().isAlive()) {
248 foregroundCall.sendDtmf(c);
302 foregroundCall.setAudioGroupMode();
308 foregroundCall.setMute(muted);
313 return (foregroundCall.getState().isAlive()
314 ? foregroundCall.getMute()
319 return foregroundCall;
671 foregroundCall.switchWith(ringingCall);