/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | AnimatedImageView.java | 30 boolean mAttached; field in AnimatedImageView 42 if (mAttached && mAnim != null) { in updateAnim() 71 mAttached = true; in onAttachedToWindow() 81 mAttached = false; in onDetachedFromWindow()
|
/frameworks/base/test-runner/src/android/test/ |
D | ApplicationTestCase.java | 70 private boolean mAttached = false; field in ApplicationTestCase 102 mAttached = true; in setupApplication() 115 if (!mAttached) { in createApplication()
|
D | ActivityUnitTestCase.java | 86 private boolean mAttached = false; field in ActivityUnitTestCase 130 if (!mAttached) { in startActivity() 158 mAttached = true; in startActivity()
|
/frameworks/base/core/java/android/widget/ |
D | TextClock.java | 127 private boolean mAttached; field in TextClock 468 if (handleTicker && mAttached && hadSeconds != mHasSeconds) { in chooseFormat() 485 if (!mAttached) { in onAttachedToWindow() 486 mAttached = true; in onAttachedToWindow() 505 if (mAttached) { in onDetachedFromWindow() 511 mAttached = false; in onDetachedFromWindow()
|
D | AnalogClock.java | 55 private boolean mAttached; field in AnalogClock 106 if (!mAttached) { in onAttachedToWindow() 107 mAttached = true; in onAttachedToWindow() 138 if (mAttached) { in onDetachedFromWindow() 140 mAttached = false; in onDetachedFromWindow()
|
D | ProgressBar.java | 231 private boolean mAttached; field in ProgressBar 1282 if (mAttached && !mRefreshIsPosted) { in refreshProgress() 1805 mAttached = true; in onAttachedToWindow() 1825 mAttached = false; in onDetachedFromWindow()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | Clock.java | 49 private boolean mAttached; field in Clock 86 if (!mAttached) { in onAttachedToWindow() 87 mAttached = true; in onAttachedToWindow() 113 if (mAttached) { in onDetachedFromWindow() 115 mAttached = false; in onDetachedFromWindow()
|
/frameworks/support/v13/java/android/support/v13/app/ |
D | FragmentTabHost.java | 51 private boolean mAttached; field in FragmentTabHost 224 if (mAttached) { in addTab() 271 mAttached = true; in onAttachedToWindow() 282 mAttached = false; in onDetachedFromWindow() 302 if (mAttached) { in onTabChanged()
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | FragmentTabHost.java | 59 private boolean mAttached; field in FragmentTabHost 232 if (mAttached) { in addTab() 279 mAttached = true; in onAttachedToWindow() 290 mAttached = false; in onDetachedFromWindow() 310 if (mAttached) { in onTabChanged()
|
/frameworks/native/libs/gui/ |
D | GLConsumer.cpp | 136 mAttached(true) in GLConsumer() 163 mAttached(false) in GLConsumer() 248 if (mAttached) { in releaseTexImage() 261 ST_LOGV("releaseTexImage: (slot=%d, mAttached=%d)", buf, mAttached); in releaseTexImage() 263 if (mAttached) { in releaseTexImage() 294 if (mAttached) { in releaseTexImage() 371 if (!mAttached) { in updateAndReleaseLocked() 550 if (!mAttached) { in detachFromContext() 580 mAttached = false; in detachFromContext() 595 if (mAttached) { in attachToContext() [all …]
|
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/ |
D | SinkActivity.java | 82 private boolean mAttached; field in SinkActivity 409 if (mAttached) { in startServices() 425 mAttached = true; in onAttachedToWindow() 435 mAttached = false; in onDetachedFromWindow()
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
D | BackgroundManager.java | 110 private boolean mAttached; field in BackgroundManager 514 mAttached = true; in attachToView() 534 mAttached = false; in detach() 626 if (!mAttached) { in setDrawableInternal() 700 if (!mAttached || mLayerWrapper == null) { in applyBackgroundChanges()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | ZenModePanel.java | 114 private boolean mAttached; field in ZenModePanel 147 pw.print(" mAttached="); pw.println(mAttached); in dump() 218 mAttached = true; in onAttachedToWindow() 233 mAttached = false; in onDetachedFromWindow() 252 setRequestingConditions(mAttached && !mHidden); in setHidden()
|
/frameworks/native/include/gui/ |
D | GLConsumer.h | 473 bool mAttached; variable
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DcTracker.java | 141 private AtomicBoolean mAttached = new AtomicBoolean(false); field in DcTracker 505 if (mAttached.get() && apnContext.isReady()) { in getActiveApnTypes() 680 mAttached.set(false); in onDataConnectionDetached() 685 mAttached.set(true); in onDataConnectionAttached() 708 boolean attachedState = mAttached.get(); in isDataAllowed() 899 if (!mAttached.get() || !apnContext.isReady()) { in notifyOffApnsOfAvailability() 1160 (mAttached.get() == false || dcFailCause != DcFailCause.SIGNAL_LOST)); in isPermanentFail() 2108 if (mAttached.get() && apnContext.isReady() && retryAfterDisconnected(apnContext)) { in onDisconnectDone() 2235 if (mAttached.get() && apnContext.isReady()) { in notifyDataConnection() 2924 pw.println(" mAttached=" + mAttached.get()); in dump()
|