Searched refs:mHold (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDeadZone.java46 // mHold ms, then move back over the course of mDecay ms
47 private int mHold, mDecay; field in class:DeadZone
68 mHold = a.getInteger(R.styleable.DeadZone_holdTime, 0);
78 Log.v(TAG, this + " size=[" + mSizeMin + "-" + mSizeMax + "] hold=" + mHold
92 if (dt > mHold + mDecay)
94 if (dt < mHold)
96 return (int) lerp(mSizeMax, mSizeMin, (float) (dt - mHold) / mDecay);
/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...]

Completed in 64 milliseconds