Home
last modified time | relevance | path

Searched refs:mainSession (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/contentcapture/
DContentCaptureManager.java544 final MainContentCaptureSession mainSession; in isContentCaptureEnabled()
546 mainSession = mMainSession; in isContentCaptureEnabled()
550 if (mainSession != null && mainSession.isDisabled()) return false; in isContentCaptureEnabled()
595 MainContentCaptureSession mainSession; in setContentCaptureEnabled() local
602 mainSession = mMainSession; in setContentCaptureEnabled()
604 if (mainSession != null) { in setContentCaptureEnabled()
605 mainSession.setDisabled(!enabled); in setContentCaptureEnabled()
621 MainContentCaptureSession mainSession; in updateWindowAttributes() local
628 mainSession = mMainSession; in updateWindowAttributes()
630 if (mainSession != null) { in updateWindowAttributes()
[all …]
DMainContentCaptureSession.java161 final MainContentCaptureSession mainSession = mMainSession.get(); in send() local
162 if (mainSession == null) { in send()
172 mainSession.mDisabled.set(disabled); in send()
178 mainSession.mHandler.post(() -> mainSession.resetSession( in send()
185 mainSession.mHandler.post(() -> mainSession.onSessionStarted(resultCode, binder)); in send()
/frameworks/base/core/java/android/view/
DViewRootImpl.java3122 MainContentCaptureSession mainSession = mAttachInfo.mContentCaptureManager in notifyContentCatpureEvents() local
3126 mainSession.notifyViewTreeEvent(sessionId, /* started= */ true); in notifyContentCatpureEvents()
3132 mainSession.notifyViewDisappeared(sessionId, (AutofillId) event); in notifyContentCatpureEvents()
3150 mainSession.notifyViewInsetsChanged(sessionId, (Insets) event); in notifyContentCatpureEvents()
3155 mainSession.notifyViewTreeEvent(sessionId, /* started= */ false); in notifyContentCatpureEvents()