Home
last modified time | relevance | path

Searched refs:mMainSession (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/core/java/android/view/contentcapture/
H A DContentCaptureManager.java387 private MainContentCaptureSession mMainSession; field in ContentCaptureManager
430 if (mMainSession == null) { in getMainContentCaptureSession()
431 mMainSession = new MainContentCaptureSession(mContext, this, mHandler, mService); in getMainContentCaptureSession()
432 if (sVerbose) Log.v(TAG, "getMainContentCaptureSession(): created " + mMainSession); in getMainContentCaptureSession()
434 return mMainSession; in getMainContentCaptureSession()
555 mainSession = mMainSession; in isContentCaptureEnabled()
611 mainSession = mMainSession; in setContentCaptureEnabled()
637 mainSession = mMainSession; in updateWindowAttributes()
757 if (mMainSession != null) { in dump()
760 mMainSession.dump(prefix3, pw); in dump()
H A DMainContentCaptureSession.java163 private final WeakReference<MainContentCaptureSession> mMainSession; field in MainContentCaptureSession.SessionStateReceiver
166 mMainSession = new WeakReference<>(session); in SessionStateReceiver()
171 final MainContentCaptureSession mainSession = mMainSession.get(); in send()