Lines Matching refs:seekTimeUs
72 SeekAction(int64_t seekTimeUs) in SeekAction()
73 : mSeekTimeUs(seekTimeUs) { in SeekAction()
422 void NuPlayer::seekToAsync(int64_t seekTimeUs, bool needNotify) { in seekToAsync() argument
424 msg->setInt64("seekTimeUs", seekTimeUs); in seekToAsync()
1198 int64_t seekTimeUs; in onMessageReceived() local
1200 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs)); in onMessageReceived()
1204 (long long)seekTimeUs, needNotify); in onMessageReceived()
1212 onStart(seekTimeUs); in onMessageReceived()
1228 new SeekAction(seekTimeUs)); in onMessageReceived()
1980 void NuPlayer::performSeek(int64_t seekTimeUs) { in performSeek() argument
1982 (long long)seekTimeUs, in performSeek()
1983 seekTimeUs / 1E6); in performSeek()
1993 mPreviousSeekTimeUs = seekTimeUs; in performSeek()
1994 mSource->seekTo(seekTimeUs); in performSeek()