Home
last modified time | relevance | path

Searched refs:GetMethodID (Results 1 – 4 of 4) sorted by relevance

/development/ndk/sources/android/ndk_helper/
DJNIHelper.cpp83 jmethodID midGetPackageName = env->GetMethodID( android_content_Context, "getPackageName", in Init()
94 jmethodID constructor = env->GetMethodID( helper.jni_helper_java_class_, "<init>", "()V" ); in Init()
231 mid = env->GetMethodID( jni_helper_java_class_, "loadTexture", "(Ljava/lang/String;)Z" ); in LoadTexture()
273 jmethodID ctor = env->GetMethodID( cls, "<init>", "([BLjava/lang/String;)V" ); in ConvertString()
306 mid = env->GetMethodID( jni_helper_java_class_, "getNativeAudioBufferSize", "()I" ); in GetNativeAudioBufferSize()
328 mid = env->GetMethodID( jni_helper_java_class_, "getNativeAudioSampleRate", "()I" ); in GetNativeAudioSampleRate()
343 jmethodID get_class_loader = jni->GetMethodID( activity_class, "getClassLoader", in RetrieveClass()
347 jmethodID find_class = jni->GetMethodID( class_loader, "loadClass", in RetrieveClass()
366 jmethodID mid = env->GetMethodID( cls_Env, "getExternalFilesDir", in GetExternalFilesDirJString()
370 jmethodID mid_getPath = env->GetMethodID( cls_File, "getPath", "()Ljava/lang/String;" ); in GetExternalFilesDirJString()
/development/ndk/platforms/android-17/samples/Teapot/jni/
DTeapotNativeActivity.cpp405 jmethodID methodID = jni->GetMethodID( clazz, "showUI", "()V" ); in ShowUI()
419 jmethodID methodID = jni->GetMethodID( clazz, "updateFPS", "(F)V" ); in UpdateFPS()
/development/ndk/platforms/android-18/samples/MoreTeapots/jni/
DMoreTeapotsNativeActivity.cpp416 jmethodID methodID = jni->GetMethodID( clazz, "showUI", "()V" ); in ShowUI()
430 jmethodID methodID = jni->GetMethodID( clazz, "updateFPS", "(F)V" ); in UpdateFPS()
/development/ndk/platforms/android-3/include/
Djni.h212 jmethodID (*GetMethodID)(JNIEnv*, jclass, const char*, const char*); member
605 jmethodID GetMethodID(jclass clazz, const char* name, const char* sig) in GetMethodID() function
606 { return functions->GetMethodID(this, clazz, name, sig); } in GetMethodID()