Home | History | Annotate | Download | only in filterfw

Lines Matching defs:mCurrent

60         private int mCurrent = STOPPED;
63 mCurrent = newState;
67 return ((mCurrent & state) == state);
71 if ((mCurrent & state) != state) {
72 mCurrent |= state;
79 boolean result = (mCurrent & state) == state;
80 mCurrent &= (~state);
85 return mCurrent;