Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/dvr/
DDvrTvView.java44 private InputSessionManager mInputSessionManager; field in DvrTvView
50 mInputSessionManager = TvSingletons.getSingletons(context).getInputSessionManager(); in DvrTvView()
150 mSession = mInputSessionManager.createTvViewSession(mTvView, this, mTvInputCallbackCompat); in init()
154 mInputSessionManager.releaseTvViewSession(mSession); in release()
155 mInputSessionManager = null; in release()
/packages/apps/TV/src/com/android/tv/ui/
DTunableTvView.java194 private final InputSessionManager mInputSessionManager; field in TunableTvView
436 mInputSessionManager = tvSingletons.getInputSessionManager(); in TunableTvView()
438 mInputSessionManager = null; in TunableTvView()
491 if (mInputSessionManager != null) { in initialize()
492 mTvViewSession = mInputSessionManager.createTvViewSession(mTvView, this, mCallback); in initialize()
533 if (mInputSessionManager != null) { in release()
534 mInputSessionManager.releaseTvViewSession(mTvViewSession); in release()
1169 Long timeMs = mInputSessionManager.getEarliestRecordingSessionEndTimeMs(mTagetInputId); in getTuneConflictMessage()
/packages/apps/TV/src/com/android/tv/
DTvApplication.java117 @Nullable private InputSessionManager mInputSessionManager; field in TvApplication
286 if (mInputSessionManager == null) { in getInputSessionManager()
287 mInputSessionManager = new InputSessionManager(this); in getInputSessionManager()
289 return mInputSessionManager; in getInputSessionManager()