Searched defs:mHold (Results 1 - 3 of 3) sorted by last modified time

/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java187 private boolean mHold = false; field in class:SipAudioCall
235 if (mHold) {
280 return mHold;
295 mHold = false;
443 if (mHold) {
674 if (mHold) return;
680 mHold = true;
728 if (!mHold) return;
730 mHold = false;
1055 if (mHold) {
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java461 private boolean mHold = false; field in class:ImsCall
816 return mHold;
900 onHold = mHold;
1116 mHold = false;
1178 mHold = true;
1213 // mHold is set to false in confirmation callback that the
1245 if (mHold || (mContext.getResources().getBoolean(
1266 mHold = true;
1490 mHold = false;
1557 mHold
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDeadZone.java53 // mHold ms, then move back over the course of mDecay ms
54 private int mHold, mDecay; field in class:DeadZone
75 mHold = a.getInteger(R.styleable.DeadZone_holdTime, 0);
85 Slog.v(TAG, this + " size=[" + mSizeMin + "-" + mSizeMax + "] hold=" + mHold
99 if (dt > mHold + mDecay)
101 if (dt < mHold)
103 return (int) lerp(mSizeMax, mSizeMin, (float) (dt - mHold) / mDecay);

Completed in 111 milliseconds