/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | AnimatedImageView.java | 30 boolean mAttached; field in AnimatedImageView 47 if (mAttached && mAnim != null) { in updateAnim() 86 mAttached = true; in onAttachedToWindow() 96 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 | 133 private boolean mAttached; field in TextClock 498 if (handleTicker && mAttached && hadSeconds != mHasSeconds) { in chooseFormat() 515 if (!mAttached) { in onAttachedToWindow() 516 mAttached = true; in onAttachedToWindow() 535 if (mAttached) { in onDetachedFromWindow() 541 mAttached = false; in onDetachedFromWindow()
|
D | AnalogClock.java | 57 private boolean mAttached; field in AnalogClock 108 if (!mAttached) { in onAttachedToWindow() 109 mAttached = true; in onAttachedToWindow() 140 if (mAttached) { in onDetachedFromWindow() 142 mAttached = false; in onDetachedFromWindow()
|
D | ProgressBar.java | 233 private boolean mAttached; field in ProgressBar 1323 if (mAttached && !mRefreshIsPosted) { in refreshProgress() 1848 mAttached = true; in onAttachedToWindow() 1866 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/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/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/native/libs/gui/ |
D | GLConsumer.cpp | 147 mAttached(true) in GLConsumer() 174 mAttached(false) in GLConsumer() 259 if (mAttached) { in releaseTexImage() 272 GLC_LOGV("releaseTexImage: (slot=%d, mAttached=%d)", buf, mAttached); in releaseTexImage() 274 if (mAttached) { in releaseTexImage() 305 if (mAttached) { in releaseTexImage() 384 if (!mAttached) { in updateAndReleaseLocked() 563 if (!mAttached) { in detachFromContext() 593 mAttached = false; in detachFromContext() 608 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 | 122 private boolean mAttached; field in BackgroundManager 824 mAttached = true; in attachToView() 832 return mAttached; in isAttached() 851 mAttached = false; in detach() 992 if (!mAttached) { in setDrawableInternal() 1080 if (!mAttached) { in applyBackgroundChanges()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | ZenModePanel.java | 117 private boolean mAttached; field in ZenModePanel 140 pw.print(" mAttached="); pw.println(mAttached); in dump() 226 mAttached = true; in onAttachedToWindow() 240 mAttached = false; in onDetachedFromWindow() 258 setRequestingConditions(mAttached && !mHidden); in setHidden()
|
/frameworks/native/include/gui/ |
D | GLConsumer.h | 474 bool mAttached; variable
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DcTracker.java | 137 private AtomicBoolean mAttached = new AtomicBoolean(false); field in DcTracker 497 if (mAttached.get() && apnContext.isReady()) { in getActiveApnTypes() 682 mAttached.set(false); in onDataConnectionDetached() 687 mAttached.set(true); in onDataConnectionAttached() 710 boolean attachedState = mAttached.get(); in isDataAllowed() 922 if (!mAttached.get() || !apnContext.isReady()) { in notifyOffApnsOfAvailability() 1134 (mAttached.get() == false || dcFailCause != DcFailCause.SIGNAL_LOST)); in isPermanentFail() 2096 if (mAttached.get() && apnContext.isReady() && retryAfterDisconnected(apnContext)) { in onDisconnectDone() 2223 if (mAttached.get() && apnContext.isReady()) { in notifyDataConnection() 2917 pw.println(" mAttached=" + mAttached.get()); in dump()
|