Searched defs:getCurrentPosition (Results 26 - 36 of 36) sorted by relevance

12

/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlaybackControlGlue.java430 int position = getCurrentPosition();
610 mControlsRow.setCurrentTime(getCurrentPosition());
813 public abstract int getCurrentPosition(); method in class:PlaybackControlGlue
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp303 status_t getCurrentPosition(int* msec) function in class:android::BpMediaPlayer
729 status_t ret = getCurrentPosition(&msec);
H A Dmediaplayer.cpp510 status_t MediaPlayer::getCurrentPosition(int *msec) function in class:android::MediaPlayer
512 ALOGV("getCurrentPosition");
520 return mPlayer->getCurrentPosition(msec);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp394 // getCurrentPosition here.
396 getCurrentPosition(&unused);
427 getCurrentPosition(&unused);
482 status_t NuPlayerDriver::getCurrentPosition(int *msec) { function in class:android::NuPlayerDriver
493 status_t ret = mPlayer->getCurrentPosition(&tempUs);
497 // means getCurrentPosition can be called before seek is completed. Iow, renderer may return a
701 // getCurrentPosition should always return OK
702 getCurrentPosition(&msec);
H A DNuPlayer.cpp778 if (getCurrentPosition(&currentPositionUs) == OK) {
840 if (getCurrentPosition(&currentPositionUs) != OK) {
2084 status_t NuPlayer::getCurrentPosition(int64_t *mediaUs) { function in class:android::NuPlayer
2090 return renderer->getCurrentPosition(mediaUs);
2529 driver->getCurrentPosition(&posMs);
H A DNuPlayerRenderer.cpp337 status_t NuPlayer::Renderer::getCurrentPosition(int64_t *mediaUs) { function in class:android::NuPlayer::Renderer
1838 if (getCurrentPosition(&currentPositionUs) == OK) {
/frameworks/base/core/java/android/widget/
H A DVideoView.java510 (seekToPosition != 0 || getCurrentPosition() > 0)) {
815 public int getCurrentPosition() { method in class:VideoView
817 return mMediaPlayer.getCurrentPosition();
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsRow.java52 * Called when {@link PlaybackControlsRow#getCurrentPosition()} changed.
967 * @deprecated Use {@link #getCurrentPosition()}
976 * @deprecated Use {@link #getCurrentPosition()}
986 public long getCurrentPosition() { method in class:PlaybackControlsRow
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java219 int currentPosition = getCurrentPosition();
470 public int getCurrentPosition() { method in class:DividerView
496 mStartPosition = getCurrentPosition();
803 : getCurrentPosition(),
1197 && getCurrentPosition() == getSnapAlgorithm().getLastSplitTarget().position;
1208 && getCurrentPosition() == getSnapAlgorithm().getLastSplitTarget().position) {
1241 stopDragging(getCurrentPosition(), mSnapAlgorithm.getMiddleTarget(),
1250 stopDragging(getCurrentPosition(), mSnapAlgorithm.getMiddleTarget(), 336,
1266 mExitStartPosition = getCurrentPosition();
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1178 status_t MediaPlayerService::Client::getCurrentPosition(int *msec) function in class:android::MediaPlayerService::Client
1180 ALOGV("getCurrentPosition");
1183 status_t ret = p->getCurrentPosition(msec);
1185 ALOGV("[%d] getCurrentPosition = %d", mConnId, *msec);
1187 ALOGE("getCurrentPosition returned %d", ret);
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java140 * as {@link #getCurrentPosition()},
308 * can be retrieved with a call to {@link #getCurrentPosition()}, which
348 * <tr><td>getCurrentPosition </p></td>
1860 getCurrentPosition() * 1000L,
1873 public native int getCurrentPosition(); method in class:MediaPlayer
5484 mLastTimeUs = mPlayer.getCurrentPosition() * 1000L;

Completed in 385 milliseconds

12