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

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCallTracker.java 115 if ((mForegroundCall.getState() != ImsPhoneCall.State.IDLE) ||
116 (mBackgroundCall.getState() != ImsPhoneCall.State.IDLE)) {
117 conn.update(imsCall, ImsPhoneCall.State.WAITING);
149 ImsPhoneCall mRingingCall = new ImsPhoneCall(this);
150 ImsPhoneCall mForegroundCall = new ImsPhoneCall(this);
151 ImsPhoneCall mBackgroundCall = new ImsPhoneCall(this);
152 ImsPhoneCall mHandoverCall = new ImsPhoneCall(this)
    [all...]
ImsPhoneCall.java 35 public class ImsPhoneCall extends Call {
38 private static final String LOG_TAG = "ImsPhoneCall";
46 ImsPhoneCall() {
50 ImsPhoneCall(ImsPhoneCallTracker owner) {
218 merge(ImsPhoneCall that, State state) {
284 void switchWith(ImsPhoneCall that) {
285 synchronized (ImsPhoneCall.class) {
286 ImsPhoneCall tmp = new ImsPhoneCall();
293 private void takeOver(ImsPhoneCall that)
    [all...]
ImsPhoneConnection.java 52 private ImsPhoneCall mParent;
117 ImsPhoneConnection(Context context, ImsCall imsCall, ImsPhoneCallTracker ct, ImsPhoneCall parent) {
169 mParent.attach(this, ImsPhoneCall.State.INCOMING);
174 ImsPhoneConnection(Context context, String dialString, ImsPhoneCallTracker ct, ImsPhoneCall parent) {
195 parent.attachFake(this, ImsPhoneCall.State.DIALING);
233 public ImsPhoneCall getCall() {
249 if (getState() != ImsPhoneCall.State.HOLDING) {
271 public ImsPhoneCall.State getState() {
273 return ImsPhoneCall.State.DISCONNECTED;
591 /*package*/ void changeParent(ImsPhoneCall parent)
    [all...]
ImsPhone.java 272 public ImsPhoneCall
278 public ImsPhoneCall
284 public ImsPhoneCall
295 if (getRingingCall().getState() != ImsPhoneCall.State.IDLE) {
303 } else if (getBackgroundCall().getState() != ImsPhoneCall.State.IDLE) {
324 ImsPhoneCall call = getForegroundCall();
331 if (call.getState() != ImsPhoneCall.State.IDLE) {
354 ImsPhoneCall call = getForegroundCall();
361 if (getRingingCall().getState() != ImsPhoneCall.State.IDLE) {
453 ImsPhoneCall.State foregroundCallState = getForegroundCall().getState()
    [all...]

Completed in 35 milliseconds