Home | History | Annotate | Download | only in jni

Lines Matching full:msec

392 android_media_MediaPlayer_seekTo(JNIEnv *env, jobject thiz, int msec)
399 LOGV("seekTo: %d(msec)", msec);
400 process_media_player_call( env, thiz, mp->seekTo(msec), NULL, NULL );
446 int msec;
447 process_media_player_call( env, thiz, mp->getCurrentPosition(&msec), NULL, NULL );
448 LOGV("getCurrentPosition: %d (msec)", msec);
449 return msec;
460 int msec;
461 process_media_player_call( env, thiz, mp->getDuration(&msec), NULL, NULL );
462 LOGV("getDuration: %d (msec)", msec);
463 return msec;
528 android_media_MediaPlayer_getFrameAt(JNIEnv *env, jobject thiz, jint msec)