/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
D | AttachDetachCollector.java | 28 private final List<View> mAttached = new ArrayList<>(); field in AttachDetachCollector 37 mAttached.add(view); in onChildViewAttachedToWindow() 46 mAttached.clear(); in reset() 51 return mAttached; in getAttached()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | AnimatedImageView.java | 34 boolean mAttached; field in AnimatedImageView 61 if (mAttached && mAnim != null) { in updateAnim() 100 mAttached = true; in onAttachedToWindow() 110 mAttached = false; in onDetachedFromWindow()
|
/frameworks/base/test-runner/src/android/test/ |
D | ApplicationTestCase.java | 76 private boolean mAttached = false; field in ApplicationTestCase 108 mAttached = true; in setupApplication() 121 if (!mAttached) { in createApplication()
|
D | ActivityUnitTestCase.java | 90 private boolean mAttached = false; field in ActivityUnitTestCase 134 if (!mAttached) { in startActivity() 162 mAttached = true; in startActivity()
|
/frameworks/base/core/java/android/widget/ |
D | TextClock.java | 133 private boolean mAttached; field in TextClock 504 if (handleTicker && mAttached && hadSeconds != mHasSeconds) { in chooseFormat() 521 if (!mAttached) { in onAttachedToWindow() 522 mAttached = true; in onAttachedToWindow() 541 if (mAttached) { in onDetachedFromWindow() 547 mAttached = false; in onDetachedFromWindow()
|
D | AnalogClock.java | 57 private boolean mAttached; field in AnalogClock 107 if (!mAttached) { in onAttachedToWindow() 108 mAttached = true; in onAttachedToWindow() 139 if (mAttached) { in onDetachedFromWindow() 141 mAttached = false; in onDetachedFromWindow()
|
D | ProgressBar.java | 241 private boolean mAttached; field in ProgressBar 1390 if (mAttached && !mRefreshIsPosted) { in refreshProgress() 1932 mAttached = true; in onAttachedToWindow() 1950 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() 306 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() 314 if (mAttached) { in onTabChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | Clock.java | 60 private boolean mAttached; field in Clock 100 if (!mAttached) { in onAttachedToWindow() 101 mAttached = true; in onAttachedToWindow() 130 if (mAttached) { in onDetachedFromWindow() 132 mAttached = false; in onDetachedFromWindow()
|
/frameworks/native/libs/gui/ |
D | GLConsumer.cpp | 170 mAttached(true) in GLConsumer() 198 mAttached(false) in GLConsumer() 281 if (mAttached) { in releaseTexImage() 294 GLC_LOGV("releaseTexImage: (slot=%d, mAttached=%d)", buf, mAttached); in releaseTexImage() 296 if (mAttached) { in releaseTexImage() 326 if (mAttached) { in releaseTexImage() 406 if (!mAttached) { in updateAndReleaseLocked() 601 if (!mAttached) { in detachFromContext() 631 mAttached = false; in detachFromContext() 646 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 | 119 private boolean mAttached; field in ZenModePanel 140 pw.print(" mAttached="); pw.println(mAttached); in dump() 230 mAttached = true; in onAttachedToWindow() 245 mAttached = false; in onDetachedFromWindow() 264 setRequestingConditions(mAttached && !mHidden); in setHidden()
|
/frameworks/native/include/gui/ |
D | GLConsumer.h | 491 bool mAttached; variable
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DcTracker.java | 680 private AtomicBoolean mAttached = new AtomicBoolean(false); field in DcTracker 1214 if (mAttached.get() && apnContext.isReady()) { in getActiveApnTypes() 1377 mAttached.set(false); in onDataConnectionDetached() 1382 mAttached.set(true); in onDataConnectionAttached() 1404 boolean attachedState = mAttached.get(); in isDataAllowed() 1679 if (!mAttached.get() || !apnContext.isReady()) { in notifyOffApnsOfAvailability() 1965 (mAttached.get() == false || dcFailCause != DcFailCause.SIGNAL_LOST)); in isPermanentFail() 3178 if (mAttached.get() && apnContext.isReady() && retryAfterDisconnected(apnContext)) { in onDisconnectDone() 3302 if (mAttached.get() && apnContext.isReady()) { in notifyDataConnection() 4366 pw.println(" mAttached=" + mAttached.get()); in dump()
|