Lines Matching refs:seekTimeUs
63 SeekAction(int64_t seekTimeUs) in SeekAction()
64 : mSeekTimeUs(seekTimeUs) { in SeekAction()
288 void NuPlayer::seekToAsync(int64_t seekTimeUs) { in seekToAsync() argument
290 msg->setInt64("seekTimeUs", seekTimeUs); in seekToAsync()
803 int64_t seekTimeUs; in onMessageReceived() local
804 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs)); in onMessageReceived()
806 ALOGV("kWhatSeek seekTimeUs=%lld us", seekTimeUs); in onMessageReceived()
811 mDeferredActions.push_back(new SeekAction(seekTimeUs)); in onMessageReceived()
1247 void NuPlayer::performSeek(int64_t seekTimeUs) { in performSeek() argument
1249 seekTimeUs, in performSeek()
1250 seekTimeUs / 1E6); in performSeek()
1252 mSource->seekTo(seekTimeUs); in performSeek()
1257 driver->notifyPosition(seekTimeUs); in performSeek()