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

  /frameworks/base/services/input/
PointerController.cpp 61 mLocked.animationPending = false;
63 mLocked.displayWidth = -1;
64 mLocked.displayHeight = -1;
65 mLocked.displayOrientation = DISPLAY_ORIENTATION_0;
67 mLocked.presentation = PRESENTATION_POINTER;
68 mLocked.presentationChanged = false;
70 mLocked.inactivityTimeout = INACTIVITY_TIMEOUT_NORMAL;
72 mLocked.pointerFadeDirection = 0;
73 mLocked.pointerX = 0;
74 mLocked.pointerY = 0
    [all...]
SpriteController.cpp 40 mLocked.transactionNestingCount = 0;
41 mLocked.deferredSpriteUpdate = false;
60 mLocked.transactionNestingCount += 1;
66 LOG_ALWAYS_FATAL_IF(mLocked.transactionNestingCount == 0,
69 mLocked.transactionNestingCount -= 1;
70 if (mLocked.transactionNestingCount == 0 && mLocked.deferredSpriteUpdate) {
71 mLocked.deferredSpriteUpdate = false;
77 bool wasEmpty = mLocked.invalidatedSprites.isEmpty();
78 mLocked.invalidatedSprites.push(sprite)
    [all...]
SpriteController.h 227 return mLocked.state;
231 mLocked.state.dirty = 0;
236 mLocked.state.surfaceControl = surfaceControl;
237 mLocked.state.surfaceWidth = width;
238 mLocked.state.surfaceHeight = height;
239 mLocked.state.surfaceDrawn = drawn;
240 mLocked.state.surfaceVisible = visible;
248 } mLocked; // guarded by mController->mLock
278 } mLocked; // guarded by mLock
PointerController.h 240 } mLocked;
  /frameworks/base/services/jni/
com_android_server_input_InputManagerService.cpp 248 } mLocked;
277 mLocked.displayWidth = -1;
278 mLocked.displayHeight = -1;
279 mLocked.displayOrientation = DISPLAY_ORIENTATION_0;
280 mLocked.displayExternalWidth = -1;
281 mLocked.displayExternalHeight = -1;
282 mLocked.displayExternalOrientation = DISPLAY_ORIENTATION_0;
284 mLocked.systemUiVisibility = ASYSTEM_UI_VISIBILITY_STATUS_BAR_VISIBLE;
285 mLocked.pointerSpeed = 0;
286 mLocked.pointerGesturesEnabled = true
    [all...]
  /device/moto/wingray/libaudio/
AudioHardware.h 232 bool isLocked() { return mLocked; }
264 bool mLocked; // setDriver() doesn't have to lock if true
301 bool isLocked() { return mLocked; }
330 bool mLocked; // setDriver() doesn't have to lock if true
AudioHardware.cpp 923 mState(AUDIO_STREAM_IDLE), /*mSrc*/ mLocked(false), mDriverRate(AUDIO_HW_OUT_SAMPLERATE),
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 67 private boolean mLocked;
102 mLocked = false;
109 mLocked = cursor.getInt(COLUMN_LOCKED) == 1;
168 updateContentLocation(mContext, msgUri, mContentLocation, mLocked);
  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 107 private boolean mLocked;
350 if (mLocked) {
396 if (mLocked) {
912 mLocked = false;
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessageItem.java 74 boolean mLocked; // locked to prevent auto-deletion
159 mLocked = cursor.getInt(columnsMap.mColumnSmsLocked) != 0;
173 mLocked = cursor.getInt(columnsMap.mColumnMmsLocked) != 0;
ComposeMessageActivity.java 626 mMessageItem.mLocked ? null : "locked=0", null);
    [all...]
MessageListItem.java 688 if (msgItem.mLocked) {
    [all...]

Completed in 2445 milliseconds