Home
last modified time | relevance | path

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

/packages/apps/TV/tests/unit/src/com/android/tv/
DTimeShiftManagerTest.java23 import static com.android.tv.TimeShiftManager.TIME_SHIFT_ACTION_ID_PLAY;
45 mTimeShiftManager.enableAction(TIME_SHIFT_ACTION_ID_PLAY, false); in testDisableActions()
62 mTimeShiftManager.enableAction(TIME_SHIFT_ACTION_ID_PLAY, true); in testEnableActions()
77 mTimeShiftManager.enableAction(TIME_SHIFT_ACTION_ID_PLAY, enabled); in enableAllActions()
88 mTimeShiftManager.isActionEnabled(TIME_SHIFT_ACTION_ID_PLAY)); in assertActionState()
/packages/apps/TV/src/com/android/tv/
DTimeShiftManager.java91 @IntDef(flag = true, value = {TIME_SHIFT_ACTION_ID_PLAY, TIME_SHIFT_ACTION_ID_PAUSE,
95 public static final int TIME_SHIFT_ACTION_ID_PLAY = 1; field in TimeShiftManager
158 private int mEnabledActionIds = TIME_SHIFT_ACTION_ID_PLAY | TIME_SHIFT_ACTION_ID_PAUSE
240 if (!isActionEnabled(TIME_SHIFT_ACTION_ID_PLAY)) { in play()
243 mTracker.sendTimeShiftAction(TIME_SHIFT_ACTION_ID_PLAY); in play()
244 mLastActionId = TIME_SHIFT_ACTION_ID_PLAY; in play()
424 enableAction(TIME_SHIFT_ACTION_ID_PLAY, true); in updateActions()
441 enableAction(TIME_SHIFT_ACTION_ID_PLAY, false); in updateActions()
446 enableAction(TIME_SHIFT_ACTION_ID_PLAY, false); in updateActions()
750 mTracker.sendTimeShiftAction(TIME_SHIFT_ACTION_ID_PLAY); in togglePlayPause()
/packages/apps/TV/src/com/android/tv/menu/
DPlayControlsRowView.java453 TimeShiftManager.TIME_SHIFT_ACTION_ID_PLAY)); in updateButtons()