HomeSort by relevance Sort by last modified time
    Searched refs:gMethods (Results 26 - 50 of 108) sorted by null

12 3 4 5

  /development/pdk/pndk/samples/samplejni/
native.cpp 21 JNINativeMethod* gMethods, int numMethods)
30 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /development/samples/SimpleJNI/jni/
native.cpp 41 JNINativeMethod* gMethods, int numMethods)
50 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /frameworks/base/core/jni/
android_media_ToneGenerator.cpp 122 static JNINativeMethod gMethods[] = {
148 "android/media/ToneGenerator", gMethods, NELEM(gMethods));
android_os_StatFs.cpp 132 static JNINativeMethod gMethods[] = {
160 "android/os/StatFs", gMethods, NELEM(gMethods));
android_view_Display.cpp 99 static JNINativeMethod gMethods[] = {
127 kClassPathName, gMethods, NELEM(gMethods));
android_util_EventLog.cpp 261 static struct { jclass *c; const char *name, *mt; jmethodID *id; } gMethods[] = {
285 for (int i = 0; i < NELEM(gMethods); ++i) {
286 *gMethods[i].id = env->GetMethodID(
287 *gMethods[i].c, gMethods[i].name, gMethods[i].mt);
288 if (*gMethods[i].id == NULL) {
289 LOGE("Can't find method: %s\n", gMethods[i].name);
android_content_res_Configuration.cpp 76 static JNINativeMethod gMethods[] = {
126 return AndroidRuntime::registerNativeMethods(env, "android/content/res/Configuration", gMethods,
127 NELEM(gMethods));
android_database_SQLiteDebug.cpp 188 static JNINativeMethod gMethods[] =
227 gMethods, NELEM(gMethods));
android_nfc_NdefMessage.cpp 173 static JNINativeMethod gMethods[] = {
179 return jniRegisterNativeMethods(e, "android/nfc/NdefMessage", gMethods, NELEM(gMethods));
android_text_AndroidCharacter.cpp 179 static JNINativeMethod gMethods[] = {
195 gMethods, NELEM(gMethods));
android_util_Log.cpp 131 static JNINativeMethod gMethods[] = {
153 return AndroidRuntime::registerNativeMethods(env, "android/util/Log", gMethods, NELEM(gMethods));
  /frameworks/base/media/jni/
android_media_AmrInputStream.cpp 122 static JNINativeMethod gMethods[] = {
136 kClassPathName, gMethods, NELEM(gMethods));
  /frameworks/base/voip/jni/rtp/
RtpStream.cpp 105 JNINativeMethod gMethods[] = {
118 env->RegisterNatives(clazz, gMethods, NELEM(gMethods)) < 0) {
  /device/sample/frameworks/PlatformLibrary/jni/
PlatformLibrary.cpp 173 static const JNINativeMethod gMethods[] = {
237 if (env->RegisterNatives(clazz, gMethods,
238 sizeof(gMethods) / sizeof(gMethods[0])) != JNI_OK)
  /external/quake/quake/src/QW/client/
main.cpp 71 JNINativeMethod* gMethods, int numMethods)
81 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /cts/apps/CtsVerifier/jni/verifier/
com_android_cts_verifier_os_FileUtils.cpp 84 static JNINativeMethod gMethods[] = {
111 return env->RegisterNatives(clazz, gMethods,
112 sizeof(gMethods) / sizeof(JNINativeMethod));
  /cts/tests/jni/
android_os_cts_FileUtils.cpp 111 static JNINativeMethod gMethods[] = {
140 return env->RegisterNatives(clazz, gMethods,
141 sizeof(gMethods) / sizeof(JNINativeMethod));
  /cts/tests/tests/permission/jni/
android_permission_cts_FileUtils.cpp 90 static JNINativeMethod gMethods[] = {
117 return env->RegisterNatives(clazz, gMethods,
118 sizeof(gMethods) / sizeof(JNINativeMethod));
  /dalvik/libnativehelper/include/nativehelper/
JNIHelp.h 42 int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
114 inline int jniRegisterNativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) {
115 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods);
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 123 static JNINativeMethod gMethods[] = {
155 gMethods, SK_ARRAY_COUNT(gMethods));
  /libcore/luni/src/main/native/
java_io_File.cpp 165 static JNINativeMethod gMethods[] = {
172 return jniRegisterNativeMethods(env, "java/io/File", gMethods, NELEM(gMethods));
java_lang_Character.cpp 138 static JNINativeMethod gMethods[] = {
164 return jniRegisterNativeMethods(env, "java/lang/Character", gMethods, NELEM(gMethods));
java_lang_Math.cpp 110 static JNINativeMethod gMethods[] = {
135 return jniRegisterNativeMethods(env, "java/lang/Math", gMethods, NELEM(gMethods));
java_lang_StrictMath.cpp 121 static JNINativeMethod gMethods[] = {
149 return jniRegisterNativeMethods(env, "java/lang/StrictMath", gMethods, NELEM(gMethods));
java_util_zip_Deflater.cpp 137 static JNINativeMethod gMethods[] = {
150 return jniRegisterNativeMethods(env, "java/util/zip/Deflater", gMethods, NELEM(gMethods));

Completed in 1355 milliseconds

12 3 4 5