Home
last modified time | relevance | path

Searched refs:mDestroyed (Results 1 – 25 of 68) sorted by relevance

123

/frameworks/rs/support/java/src/androidx/renderscript/
DBaseObj.java37 mDestroyed = false; in BaseObj()
58 if (mDestroyed) { in getID()
81 private boolean mDestroyed; field in BaseObj
87 if (!mDestroyed) { in helpDestroy()
89 mDestroyed = true; in helpDestroy()
118 if(mDestroyed) { in destroy()
/frameworks/base/rs/java/android/renderscript/
DBaseObj.java40 mDestroyed = false; in BaseObj()
61 if (mDestroyed) { in getID()
81 private boolean mDestroyed; field in BaseObj
125 if (!mDestroyed) { in helpDestroy()
127 mDestroyed = true; in helpDestroy()
163 if(mDestroyed) { in destroy()
/frameworks/base/core/java/android/app/
DNativeActivity.java88 private boolean mDestroyed; field in NativeActivity
189 mDestroyed = true; in onDestroy()
238 if (!mDestroyed) { in onConfigurationChanged()
246 if (!mDestroyed) { in onLowMemory()
254 if (!mDestroyed) { in onWindowFocusChanged()
260 if (!mDestroyed) { in surfaceCreated()
267 if (!mDestroyed) { in surfaceChanged()
274 if (!mDestroyed) { in surfaceRedrawNeeded()
282 if (!mDestroyed) { in surfaceDestroyed()
288 if (!mDestroyed) { in onInputQueueCreated()
[all …]
/frameworks/base/services/autofill/java/com/android/server/autofill/
DAutofillInlineSuggestionsRequestSession.java104 private boolean mDestroyed = false; field in AutofillInlineSuggestionsRequestSession
144 if (mDestroyed) { in getInlineSuggestionsRequestLocked()
158 if (mDestroyed) { in onInlineSuggestionsResponseLocked()
181 mDestroyed = true; in destroySessionLocked()
196 if (mDestroyed) { in onCreateInlineSuggestionsRequestLocked()
222 if (mDestroyed || mResponseCallback == null) { in maybeUpdateResponseToImeLocked()
245 if (mDestroyed) { in updateResponseToImeUncheckLocked()
258 if (mDestroyed) { in maybeNotifyFillUiEventLocked()
296 if (mDestroyed || mImeRequestReceived) { in handleOnReceiveImeRequest()
323 if (mDestroyed) { in handleOnReceiveImeStatusUpdated()
[all …]
/frameworks/base/graphics/java/android/graphics/
DGraphicBuffer.java67 private boolean mDestroyed; field in GraphicBuffer
173 if (mDestroyed) { in lockCanvas()
202 if (!mDestroyed && mCanvas != null && canvas == mCanvas) { in unlockCanvasAndPost()
219 if (!mDestroyed) { in destroy()
220 mDestroyed = true; in destroy()
237 return mDestroyed; in isDestroyed()
266 if (mDestroyed) { in writeToParcel()
/frameworks/base/services/core/java/com/android/server/biometrics/log/
DALSProbe.java52 private boolean mDestroyed = false; field in ALSProbe
105 mDestroyed = true; in ALSProbe()
111 if (!mDestroyed && !mDestroyRequested) { in enable()
122 if (!mDestroyed && mNextConsumer == null) { in disable()
132 if (!mDestroyed && mNextConsumer == null) { in destroy()
134 mDestroyed = true; in destroy()
183 mDestroyed = false; in awaitNextLux()
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/request/
DUceRequestRepository.java35 private volatile boolean mDestroyed = false; field in UceRequestRepository
46 mDestroyed = true; in onDestroy()
57 if (mDestroyed) return; in addRequestCoordinatorAndDispatch()
75 if (mDestroyed) return; in addRequestCoordinator()
/frameworks/base/services/systemcaptions/java/com/android/server/systemcaptions/
DRemoteSystemCaptionsManagerService.java62 private boolean mDestroyed = false; field in RemoteSystemCaptionsManagerService
95 if (mDestroyed) { in handleDestroy()
101 mDestroyed = true; in handleDestroy()
108 return mDestroyed; in isDestroyed()
167 if (mDestroyed || !mBinding) { in onServiceConnected()
/frameworks/base/core/java/android/service/autofill/augmented/
DFillWindow.java86 private boolean mDestroyed; field in FillWindow
155 mDestroyed = false; in update()
248 "destroy(): mDestroyed=" + mDestroyed + " mShowing=" + mShowing + " mFillView=" in destroy()
252 if (mDestroyed) return; in destroy()
258 mDestroyed = true; in destroy()
274 if (mDestroyed) { in checkNotDestroyedLocked()
282 pw.print(prefix); pw.print("destroyed: "); pw.println(mDestroyed); in dump()
/frameworks/base/core/java/android/service/autofill/
DField.java115 private boolean mDestroyed = false; field in Field.Builder
155 mDestroyed = true; // Mark builder used in build()
165 if (mDestroyed) { in checkNotUsed()
DVisibilitySetterAction.java75 private boolean mDestroyed; field in VisibilitySetterAction.Builder
118 mDestroyed = true; in build()
123 Preconditions.checkState(!mDestroyed, "Already called build()"); in throwIfDestroyed()
DBatchUpdates.java76 private boolean mDestroyed; field in BatchUpdates.Builder
140 mDestroyed = true; in build()
145 if (mDestroyed) { in throwIfDestroyed()
DCharSequenceTransformation.java121 private boolean mDestroyed; field in CharSequenceTransformation.Builder
164 mDestroyed = true; in build()
169 Preconditions.checkState(!mDestroyed, "Already called build()"); in throwIfDestroyed()
DImageTransformation.java115 private boolean mDestroyed; field in ImageTransformation.Builder
201 mDestroyed = true; in build()
206 Preconditions.checkState(!mDestroyed, "Already called build()"); in throwIfDestroyed()
/frameworks/base/apct-tests/perftests/contentcapture/src/android/view/contentcapture/
DMyContentCaptureService.java98 sw.mDestroyed.countDown(); in onDisconnected()
132 private final CountDownLatch mDestroyed = new CountDownLatch(1); field in MyContentCaptureService.ServiceWatcher
156 await(mDestroyed, "not destroyed"); in waitOnDestroy()
176 + " destroyed: " + (mDestroyed.getCount() == 0); in toString()
/frameworks/base/core/java/android/view/textclassifier/
DTextClassificationSession.java48 private boolean mDestroyed; field in TextClassificationSession
129 if (!mDestroyed) { in destroy()
131 mDestroyed = true; in destroy()
139 return mDestroyed; in isDestroyed()
158 if (!mDestroyed) { in checkDestroyedAndRun()
/frameworks/base/core/java/android/inputmethodservice/
DNavigationBarController.java158 private boolean mDestroyed = false; field in NavigationBarController.Impl
388 if (mDestroyed) { in scheduleRelayout()
432 if (mDestroyed) { in onViewInitialized()
440 if (mDestroyed) { in onDestroy()
447 mDestroyed = true; in onDestroy()
452 if (mDestroyed || !mImeDrawsImeNavBar || mNavigationBarFrame == null) { in onWindowShown()
482 if (mDestroyed) { in onNavButtonFlagsChanged()
527 if (mDestroyed) { in onSystemBarAppearanceChanged()
576 if (mDestroyed) { in onDrawLegacyNavigationBarBackgroundChanged()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/classifier/
DFalsingManagerFake.java47 private boolean mDestroyed; field in FalsingManagerFake
168 mDestroyed = true; in cleanupInternal()
173 .that(mDestroyed).isFalse(); in checkDestroyed()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleTaskViewHelper.java79 private boolean mDestroyed = false;
84 mDestroyed, mInitialized, getBubbleKey());
86 if (mDestroyed || mInitialized) {
154 mDestroyed = true;
/frameworks/base/core/java/com/android/internal/infra/
DAbstractRemoteService.java99 private boolean mDestroyed; field in AbstractRemoteService
153 return mDestroyed; in isDestroyed()
223 mDestroyed = true; in handleDestroy()
295 .append(String.valueOf(mDestroyed)).println(); in dump()
540 if (mDestroyed || !mConnecting) { in onServiceConnected()
574 if (mDestroyed) { in checkIfDestroyed()
580 return mDestroyed; in checkIfDestroyed()
588 + (mDestroyed ? " (destroyed)" : "") in toString()
/frameworks/base/core/java/android/view/contentcapture/
DDataRemovalRequest.java119 private boolean mDestroyed; field in DataRemovalRequest.Builder
170 mDestroyed = true; in build()
175 Preconditions.checkState(!mDestroyed, "Already destroyed!"); in throwIfDestroyed()
DContentCaptureSession.java236 private boolean mDestroyed; field in ContentCaptureSession
375 if (mDestroyed) { in destroy()
379 mDestroyed = true; in destroy()
681 return !mDestroyed; in isContentCaptureEnabled()
692 pw.print(prefix); pw.print("destroyed: "); pw.println(mDestroyed); in dump()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccCardApplication.java101 private boolean mDestroyed;//set to true once this App is commanded to be disposed of. field in UiccCardApplication
140 if (mDestroyed) { in update()
196 mDestroyed = true; in dispose()
397 if (mDestroyed) {
525 if (mDestroyed) { in notifyReadyRegistrantsIfNeeded()
552 if (mDestroyed) { in notifyDetectedRegistrantsIfNeeded()
572 if (mDestroyed) { in notifyPinLockedRegistrantsIfNeeded()
600 if (mDestroyed) { in notifyNetworkLockedRegistrantsIfNeeded()
1010 pw.println("mDestroyed=" + mDestroyed); in dump()
/frameworks/base/core/java/android/view/translation/
DTranslator.java86 private boolean mDestroyed; field in Translator
348 if (mDestroyed) { in destroy()
351 mDestroyed = true; in destroy()
369 return mDestroyed; in isDestroyed()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageInstallerHistoricalSession.java73 private final boolean mDestroyed; field in PackageInstallerHistoricalSession
112 this.mDestroyed = destroyed; in PackageInstallerHistoricalSession()
172 pw.printPair("mDestroyed", mDestroyed); in dump()

123