Home
last modified time | relevance | path

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

/packages/apps/TV/tests/unit/src/com/android/tv/
DTimeShiftManagerTest.java22 import static com.android.tv.TimeShiftManager.TIME_SHIFT_ACTION_ID_PAUSE;
47 mTimeShiftManager.enableAction(TIME_SHIFT_ACTION_ID_PAUSE, false); in testDisableActions()
64 mTimeShiftManager.enableAction(TIME_SHIFT_ACTION_ID_PAUSE, true); in testEnableActions()
78 mTimeShiftManager.enableAction(TIME_SHIFT_ACTION_ID_PAUSE, enabled); in enableAllActions()
90 mTimeShiftManager.isActionEnabled(TIME_SHIFT_ACTION_ID_PAUSE)); 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,
96 public static final int TIME_SHIFT_ACTION_ID_PAUSE = 1 << 1; field in TimeShiftManager
158 private int mEnabledActionIds = TIME_SHIFT_ACTION_ID_PLAY | TIME_SHIFT_ACTION_ID_PAUSE
255 if (!isActionEnabled(TIME_SHIFT_ACTION_ID_PAUSE)) { in pause()
258 mLastActionId = TIME_SHIFT_ACTION_ID_PAUSE; in pause()
425 enableAction(TIME_SHIFT_ACTION_ID_PAUSE, true); in updateActions()
442 enableAction(TIME_SHIFT_ACTION_ID_PAUSE, false); in updateActions()
753 mTracker.sendTimeShiftAction(TIME_SHIFT_ACTION_ID_PAUSE); in togglePlayPause()
/packages/apps/TV/src/com/android/tv/menu/
DPlayControlsRowView.java457 TimeShiftManager.TIME_SHIFT_ACTION_ID_PAUSE)); in updateButtons()