Lines Matching refs:msec
405 android_media_MediaPlayer_seekTo(JNIEnv *env, jobject thiz, jint msec) in android_media_MediaPlayer_seekTo() argument
412 ALOGV("seekTo: %d(msec)", msec); in android_media_MediaPlayer_seekTo()
413 process_media_player_call( env, thiz, mp->seekTo(msec), NULL, NULL ); in android_media_MediaPlayer_seekTo()
459 int msec; in android_media_MediaPlayer_getCurrentPosition() local
460 process_media_player_call( env, thiz, mp->getCurrentPosition(&msec), NULL, NULL ); in android_media_MediaPlayer_getCurrentPosition()
461 ALOGV("getCurrentPosition: %d (msec)", msec); in android_media_MediaPlayer_getCurrentPosition()
462 return (jint) msec; in android_media_MediaPlayer_getCurrentPosition()
473 int msec; in android_media_MediaPlayer_getDuration() local
474 process_media_player_call( env, thiz, mp->getDuration(&msec), NULL, NULL ); in android_media_MediaPlayer_getDuration()
475 ALOGV("getDuration: %d (msec)", msec); in android_media_MediaPlayer_getDuration()
476 return (jint) msec; in android_media_MediaPlayer_getDuration()