Lines Matching refs:seekTimeUs
63 SeekAction(int64_t seekTimeUs) in SeekAction()
64 : mSeekTimeUs(seekTimeUs) { in SeekAction()
256 void NuPlayer::seekToAsync(int64_t seekTimeUs) { in seekToAsync() argument
258 msg->setInt64("seekTimeUs", seekTimeUs); in seekToAsync()
726 int64_t seekTimeUs; in onMessageReceived() local
727 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs)); in onMessageReceived()
729 ALOGV("kWhatSeek seekTimeUs=%lld us", seekTimeUs); in onMessageReceived()
734 mDeferredActions.push_back(new SeekAction(seekTimeUs)); in onMessageReceived()
1140 void NuPlayer::performSeek(int64_t seekTimeUs) { in performSeek() argument
1142 seekTimeUs, in performSeek()
1143 seekTimeUs / 1E6); in performSeek()
1145 mSource->seekTo(seekTimeUs); in performSeek()
1150 driver->notifyPosition(seekTimeUs); in performSeek()