Home | History | Annotate | Download | only in jni

Lines Matching defs:msec

394 android_media_MediaPlayer_seekTo(JNIEnv *env, jobject thiz, int msec)
401 ALOGV("seekTo: %d(msec)", msec);
402 process_media_player_call( env, thiz, mp->seekTo(msec), NULL, NULL );
448 int msec;
449 process_media_player_call( env, thiz, mp->getCurrentPosition(&msec), NULL, NULL );
450 ALOGV("getCurrentPosition: %d (msec)", msec);
451 return msec;
462 int msec;
463 process_media_player_call( env, thiz, mp->getDuration(&msec), NULL, NULL );
464 ALOGV("getDuration: %d (msec)", msec);
465 return msec;
530 android_media_MediaPlayer_getFrameAt(JNIEnv *env, jobject thiz, jint msec)