Lines Matching refs:mLastActionId
162 private int mLastActionId = 0; field in TimeShiftManager
244 mLastActionId = TIME_SHIFT_ACTION_ID_PLAY; in play()
258 mLastActionId = TIME_SHIFT_ACTION_ID_PAUSE; in pause()
259 mTracker.sendTimeShiftAction(mLastActionId); in pause()
284 mLastActionId = TIME_SHIFT_ACTION_ID_REWIND; in rewind()
285 mTracker.sendTimeShiftAction(mLastActionId); in rewind()
301 mLastActionId = TIME_SHIFT_ACTION_ID_FAST_FORWARD; in fastForward()
302 mTracker.sendTimeShiftAction(mLastActionId); in fastForward()
327 mLastActionId = TIME_SHIFT_ACTION_ID_JUMP_TO_PREVIOUS; in jumpToPrevious()
328 mTracker.sendTimeShiftAction(mLastActionId); in jumpToPrevious()
352 mLastActionId = TIME_SHIFT_ACTION_ID_JUMP_TO_NEXT; in jumpToNext()
353 mTracker.sendTimeShiftAction(mLastActionId); in jumpToNext()
398 return mLastActionId; in getLastActionId()