Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/contentcapture/
DContentCaptureManager.java381 private MainContentCaptureSession mMainSession; field in ContentCaptureManager
424 if (mMainSession == null) { in getMainContentCaptureSession()
425 mMainSession = new MainContentCaptureSession(mContext, this, mHandler, mService); in getMainContentCaptureSession()
426 if (sVerbose) Log.v(TAG, "getMainContentCaptureSession(): created " + mMainSession); in getMainContentCaptureSession()
428 return mMainSession; in getMainContentCaptureSession()
546 mainSession = mMainSession; in isContentCaptureEnabled()
602 mainSession = mMainSession; in setContentCaptureEnabled()
628 mainSession = mMainSession; in updateWindowAttributes()
749 if (mMainSession != null) { in dump()
752 mMainSession.dump(prefix3, pw); in dump()
DMainContentCaptureSession.java153 private final WeakReference<MainContentCaptureSession> mMainSession; field in MainContentCaptureSession.SessionStateReceiver
156 mMainSession = new WeakReference<>(session); in SessionStateReceiver()
161 final MainContentCaptureSession mainSession = mMainSession.get(); in send()