Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/ui/
DTvOverlayManager.java808 int lockType = ChannelBannerView.LOCK_NONE; in updateChannelBannerAndShowIfNeeded() local
812 lockType = ChannelBannerView.LOCK_CHANNEL_INFO; in updateChannelBannerAndShowIfNeeded()
815 lockType = ChannelBannerView.LOCK_PROGRAM_DETAIL; in updateChannelBannerAndShowIfNeeded()
820 lockType = ChannelBannerView.LOCK_CHANNEL_INFO; in updateChannelBannerAndShowIfNeeded()
824 lockType = ChannelBannerView.LOCK_PROGRAM_DETAIL; in updateChannelBannerAndShowIfNeeded()
828 lockType = ChannelBannerView.LOCK_CHANNEL_INFO; in updateChannelBannerAndShowIfNeeded()
833 lockType = ChannelBannerView.LOCK_PROGRAM_DETAIL; in updateChannelBannerAndShowIfNeeded()
837 int previousLockType = mChannelBannerView.setLockType(lockType); in updateChannelBannerAndShowIfNeeded()
838 if (previousLockType == lockType in updateChannelBannerAndShowIfNeeded()
847 lockType != ChannelBannerView.LOCK_PROGRAM_DETAIL) { in updateChannelBannerAndShowIfNeeded()
DChannelBannerView.java310 public int setLockType(int lockType) { in setLockType() argument
311 if (lockType != LOCK_NONE && lockType != LOCK_CHANNEL_INFO in setLockType()
312 && lockType != LOCK_PROGRAM_DETAIL) { in setLockType()
313 throw new IllegalArgumentException("No such lock type " + lockType); in setLockType()
316 mLockType = lockType; in setLockType()