Searched refs:jmethodID (Results 1 - 20 of 20) sorted by relevance

/dalvik/libnativehelper/include/nativehelper/
H A Djni.h104 typedef struct _jmethodID* jmethodID; /* method IDs */ typedef in typeref:struct:_jmethodID
160 jmethodID (*FromReflectedMethod)(JNIEnv*, jobject);
163 jobject (*ToReflectedMethod)(JNIEnv*, jclass, jmethodID, jboolean);
190 jobject (*NewObject)(JNIEnv*, jclass, jmethodID, ...);
191 jobject (*NewObjectV)(JNIEnv*, jclass, jmethodID, va_list);
192 jobject (*NewObjectA)(JNIEnv*, jclass, jmethodID, jvalue*);
196 jmethodID (*GetMethodID)(JNIEnv*, jclass, const char*, const char*);
198 jobject (*CallObjectMethod)(JNIEnv*, jobject, jmethodID, ...);
199 jobject (*CallObjectMethodV)(JNIEnv*, jobject, jmethodID, va_list);
200 jobject (*CallObjectMethodA)(JNIEnv*, jobject, jmethodID, jvalu
[all...]
/dalvik/libcore/luni/src/main/native/
H A Djava_io_ObjectStreamClass.c24 jmethodID mid;
48 jmethodID mid;
72 jmethodID mid;
92 jmethodID mid = (*env)->GetStaticMethodID(env, targetClass,
H A Djava_io_FileDescriptor.c35 jmethodID constructorInt;
36 jmethodID setFD;
H A Djava_net_NetworkInterface.cpp72 jmethodID constructor = env->GetMethodID(clazz, "<init>", "(ILjava/lang/String;Ljava/net/InetAddress;)V");
H A Dorg_apache_harmony_luni_platform_OSMemory.cpp31 jmethodID method_trackExternalAllocation;
32 jmethodID method_trackExternalFree;
579 jmethodID method_getRuntime;
H A Djava_io_ObjectInputStream.c187 jmethodID mid =
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp165 jmethodID iaddr_getbyaddress;
167 jmethodID i4addr_class_init;
171 jmethodID integer_class_init;
174 jmethodID boolean_class_init;
177 jmethodID byte_class_init;
560 jmethodID tempMethod;
577 jmethodID tempMethod;
1376 jmethodID *method;
/dalvik/libcore/icu/src/main/native/
H A DRuleBasedNumberFormat.cpp123 jmethodID setBeginIndexMethodID = env->GetMethodID(fieldPositionClass,
125 jmethodID setEndIndexMethodID = env->GetMethodID(fieldPositionClass,
127 jmethodID appendMethodID = env->GetMethodID(stringBufferClass,
185 jmethodID setBeginIndexMethodID = env->GetMethodID(fieldPositionClass,
187 jmethodID setEndIndexMethodID = env->GetMethodID(fieldPositionClass,
189 jmethodID appendMethodID = env->GetMethodID(stringBufferClass,
248 jmethodID getIndexMethodID = env->GetMethodID(parsePositionClass,
250 jmethodID setIndexMethodID = env->GetMethodID(parsePositionClass,
252 jmethodID setErrorIndexMethodID = env->GetMethodID(parsePositionClass,
255 jmethodID longInitMethodI
[all...]
H A DNativeDecimalFormat.cpp250 jmethodID appendMethodID = env->GetMethodID(stringBufferClass, "append", "(Ljava/lang/String;)Ljava/lang/StringBuffer;");
273 jmethodID setBeginIndexMethodID = env->GetMethodID(fieldPositionClass, "setBeginIndex", "(I)V");
274 jmethodID setEndIndexMethodID = env->GetMethodID(fieldPositionClass, "setEndIndex", "(I)V");
408 jmethodID appendMethodID = env->GetMethodID(stringBufferClass,
434 jmethodID setBeginIndexMethodID = env->GetMethodID(
436 jmethodID setEndIndexMethodID = env->GetMethodID(
476 jmethodID getIndexMethodID = env->GetMethodID(parsePositionClass,
478 jmethodID setIndexMethodID = env->GetMethodID(parsePositionClass,
480 jmethodID setErrorIndexMethodID = env->GetMethodID(parsePositionClass,
483 jmethodID longInitMethodI
[all...]
H A DBidiWrapper.cpp119 jmethodID bidiRunConstructor = env->GetMethodID(bidiRunClass, "<init>", "(III)V");
H A DNativeRegEx.cpp48 jmethodID method = env->GetMethodID(clazz, "<init>",
H A DResources.cpp577 jmethodID constructor = env->GetMethodID(integerClass, "<init>", "(I)V");
/dalvik/libnativehelper/
H A DJNIHelp.c64 jmethodID getNameMethod =
77 jmethodID getThrowableMessage =
/dalvik/libcore/xml/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp92 static jmethodID commentMethod;
93 static jmethodID endCdataMethod;
94 static jmethodID endDtdMethod;
95 static jmethodID endElementMethod;
96 static jmethodID endNamespaceMethod;
97 static jmethodID handleExternalEntityMethod;
98 static jmethodID internMethod;
99 static jmethodID notationDeclMethod;
100 static jmethodID processingInstructionMethod;
101 static jmethodID startCdataMetho
[all...]
/dalvik/dalvikvm/
H A DMain.c92 static int methodIsPublic(JNIEnv* env, jclass clazz, jmethodID methodId)
97 jmethodID getModifiersId;
240 jmethodID startMeth;
/dalvik/vm/
H A DCheckJni.c774 static void checkSig(JNIEnv* env, jmethodID methodID, char expectedSigByte,
873 static void checkMethodArgsV(JNIEnv* env, jmethodID methodID, va_list args,
913 static void checkMethodArgsA(JNIEnv* env, jmethodID methodID, jvalue* args,
1285 static jmethodID Check_FromReflectedMethod(JNIEnv* env, jobject method)
1289 jmethodID result;
1306 jmethodID methodID, jboolean isStatic)
1486 static jobject Check_NewObject(JNIEnv* env, jclass clazz, jmethodID methodID,
1506 static jobject Check_NewObjectV(JNIEnv* env, jclass clazz, jmethodID methodID,
1522 static jobject Check_NewObjectA(JNIEnv* env, jclass clazz, jmethodID methodID,
1556 static jmethodID Check_GetMethodI
[all...]
H A DJni.c1972 static jmethodID FromReflectedMethod(JNIEnv* env, jobject jmethod)
1975 jmethodID methodID;
1977 methodID = (jmethodID) dvmGetMethodFromReflectObj(method);
2002 static jobject ToReflectedMethod(JNIEnv* env, jclass jcls, jmethodID methodID,
2296 static jobject NewObject(JNIEnv* env, jclass jclazz, jmethodID methodID, ...)
2321 static jobject NewObjectV(JNIEnv* env, jclass jclazz, jmethodID methodID,
2338 static jobject NewObjectA(JNIEnv* env, jclass jclazz, jmethodID methodID,
2406 static jmethodID GetMethodID(JNIEnv* env, jclass jclazz, const char* name,
2412 jmethodID id = NULL;
2448 id = (jmethodID) met
[all...]
/dalvik/libcore/luni-kernel/src/main/native/
H A Djava_lang_ProcessManager.cpp37 static jmethodID onExitMethod = NULL;
/dalvik/libcore/sql/src/main/native/
H A Dsqlite_jni.c140 static jmethodID M_java_lang_String_getBytes = 0;
141 static jmethodID M_java_lang_String_getBytes2 = 0;
142 static jmethodID M_java_lang_String_initBytes = 0;
143 static jmethodID M_java_lang_String_initBytes2 = 0;
402 jmethodID mid = (*env)->GetMethodID(env, cls, "busy",
430 jmethodID mid = (*env)->GetMethodID(env, cls, "busy",
454 jmethodID mid = (*env)->GetMethodID(env, cls, "progress", "()Z");
475 jmethodID mid;
1596 jmethodID mid =
1650 jmethodID mi
[all...]
/dalvik/libcore/x-net/src/main/native/
H A Dorg_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp2356 jmethodID methodID = appdata->env->GetMethodID(cls, "verify_callback", "([[B)I");

Completed in 6158 milliseconds