/frameworks/av/services/audioflinger/ |
AudioResamplerSinc.h | 67 int16_t *mState;
|
PlaybackTracks.h | 89 bool isPausing() const { return mState == PAUSING; } 90 bool isPaused() const { return mState == PAUSED; } 91 bool isResuming() const { return mState == RESUMING; } 93 void setPaused() { mState = PAUSED; }
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
RecentLoader.java | 78 private final State mState; 154 mState = state; 170 final Collection<RootInfo> roots = mRoots.getMatchingRootsBlocking(mState); 203 cursor, mState.acceptMimes, RECENT_REJECT_MIMES, rejectBefore) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/ |
NotificationPlayer.java | 256 private int mState = STOP; 294 mState = PLAY; 306 if (mState != STOP) { 311 mState = STOP;
|
/frameworks/native/include/binder/ |
Binder.h | 96 volatile int32_t mState;
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
GLES20RenderEngine.h | 53 Description mState;
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
NotificationPlayer.java | 242 private int mState = STOP; 284 mState = PLAY; 296 if (mState != STOP) { 301 mState = STOP;
|
/packages/apps/Settings/src/com/android/settings/applications/ |
AppOpsDetails.java | 52 private AppOpsState mState; 117 List<AppOpsState.AppOpEntry> entries = mState.buildState(tpl, 140 entry.getSwitchText(mState)); 173 mState = new AppOpsState(getActivity());
|
/system/core/include/utils/ |
Mutex.h | 83 void* mState;
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
SipSessionGroup.java | 372 + SipSession.State.toString(session.mState)); 427 newSession.mState = newState; 509 + SipSession.State.toString(mState) + ": processing " 539 int mState = SipSession.State.READY_TO_CALL; 604 mState = SipSession.State.READY_TO_CALL; 670 return mState; 756 + SipSession.State.toString(mState); 764 + SipSession.State.toString(mState) + ": processing " 785 switch (mState) { 866 if ((current != target) && (mState != SipSession.State.PINGING)) [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
AdapterProperties.java | 54 private int mState = BluetoothAdapter.STATE_OFF; 193 * @param mState the mState to set 195 void setState(int mState) { 197 debugLog("Setting state to " + mState); 198 this.mState = mState; 203 * @return the mState 207 if (VDBG) debugLog("State = " + mState); 208 return mState; [all...] |
/packages/apps/Camera2/src/com/android/camera/crop/ |
CropView.java | 79 private Mode mState = Mode.NONE; 153 if (mState == Mode.NONE) { 159 mState = Mode.MOVE; 163 if (mState == Mode.MOVE) { 168 mState = Mode.NONE; 172 if (mState == Mode.MOVE) { 189 mState = Mode.NONE;
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
CertInstaller.java | 77 private int mState; 97 mState = (savedStates == null) ? STATE_INIT : STATE_RUNNING; 99 if (mState == STATE_INIT) { 125 if (mState == STATE_INIT) { 126 mState = STATE_RUNNING; 142 mState = STATE_PAUSED; 302 if (mState == STATE_PAUSED) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
CropView.java | 80 private Mode mState = Mode.NONE; 154 if (mState == Mode.NONE) { 160 mState = Mode.MOVE; 164 if (mState == Mode.MOVE) { 169 mState = Mode.NONE; 173 if (mState == Mode.MOVE) { 190 mState = Mode.NONE;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImageCrop.java | 60 private Mode mState = Mode.NONE; 121 if (mState == Mode.NONE) { 127 mState = Mode.MOVE; 131 if (mState == Mode.MOVE) { 136 mState = Mode.NONE; 141 if (mState == Mode.MOVE) { 244 mState = Mode.NONE;
|
/system/vold/ |
Volume.cpp | 112 mState = Volume::State_Init; 167 int oldState = mState; 178 mState = state; 181 oldState, stateToStr(oldState), mState, stateToStr(mState)); 184 getFuseMountpoint(), oldState, stateToStr(oldState), mState, 185 stateToStr(mState));
|
/external/opencv/cv/src/ |
cvmoments.cpp | 511 // mState - moment structure filled by one of the icvMoments[Binary]*** function 518 cvGetHuMoments( CvMoments * mState, CvHuMoments * HuState ) 524 if( !mState || !HuState ) 528 double m00s = mState->inv_sqrt_m00, m00 = m00s * m00s, s2 = m00 * m00, s3 = s2 * m00s; 530 double nu20 = mState->mu20 * s2, 531 nu11 = mState->mu11 * s2, 532 nu02 = mState->mu02 * s2, 533 nu30 = mState->mu30 * s3, 534 nu21 = mState->mu21 * s3, nu12 = mState->mu12 * s3, nu03 = mState->mu03 * s3 [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
ARTSPConnection.cpp | 50 mState(DISCONNECTED), 215 if (mState != DISCONNECTED) { 226 mState = CONNECTING; 247 mState = DISCONNECTED; 262 mState = DISCONNECTED; 297 mState = DISCONNECTED; 307 mState = CONNECTED; 331 mState = DISCONNECTED; 335 if (mState == CONNECTED || mState == CONNECTING) [all...] |
/frameworks/base/core/java/android/app/ |
Fragment.java | 357 int mState = INITIALIZING; 487 final Bundle mState; 490 mState = state; 494 mState = in.readBundle(); 495 if (loader != null && mState != null) { 496 mState.setClassLoader(loader); 507 dest.writeBundle(mState); 721 mSavedFragmentState = state != null && state.mState != null 722 ? state.mState : null; 826 if (mState >= RESUMED) [all...] |
/frameworks/support/v4/java/android/support/v4/app/ |
Fragment.java | 174 int mState = INITIALIZING; 307 final Bundle mState; 310 mState = state; 314 mState = in.readBundle(); 315 if (loader != null && mState != null) { 316 mState.setClassLoader(loader); 327 dest.writeBundle(mState); 555 mSavedFragmentState = state != null && state.mState != null 556 ? state.mState : null; 660 if (mState >= RESUMED) [all...] |
/frameworks/av/media/libstagefright/foundation/ |
ANetworkSession.cpp | 123 State mState; 166 mState(state), 174 if (mState == CONNECTED) { 236 if (mState != CONNECTED || mMode != MODE_RTSP) { 250 return mState == LISTENING_RTSP; 254 return mState == LISTENING_TCP_DGRAMS; 258 return !mSawReceiveFailure && mState != CONNECTING; 263 && (mState == CONNECTING 264 || (mState == CONNECTED && !mOutFragments.empty()) 265 || (mState == DATAGRAM && !mOutFragments.empty())) [all...] |
/frameworks/av/services/camera/libcameraservice/device2/ |
Camera2Device.cpp | 966 mState(RELEASED), 985 if (mState != RELEASED) { 997 if (mState != RELEASED) return INVALID_OPERATION; 1036 mState = ALLOCATED; 1048 mState = CONNECTED; [all...] |
/frameworks/base/core/java/android/widget/ |
OverScroller.java | 500 mScrollerX.mState != SplineOverScroller.SPLINE) || 502 mScrollerY.mState != SplineOverScroller.SPLINE)); 581 private int mState = SPLINE; 735 mState = CUBIC; 759 mState = SPLINE; 841 // mState is used to detect successive notifications 842 if (mState == SPLINE) { [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/ |
OverScrollerSGV.java | 504 mScrollerX.mState != SplineOverScroller.SPLINE) || 506 mScrollerY.mState != SplineOverScroller.SPLINE)); 585 private int mState = SPLINE; 739 mState = CUBIC; 763 mState = SPLINE; 846 // mState is used to detect successive notifications 847 if (mState == SPLINE) { [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
OverScroller.java | 502 mScrollerX.mState != SplineOverScroller.SPLINE) || 504 mScrollerY.mState != SplineOverScroller.SPLINE)); 583 private int mState = SPLINE; 740 mState = CUBIC; 764 mState = SPLINE; 846 // mState is used to detect successive notifications 847 if (mState == SPLINE) { [all...] |