Home
last modified time | relevance | path

Searched refs:jmethodID (Results 1 – 18 of 18) sorted by relevance

/dalvik/libnativehelper/include/nativehelper/
Djni.h104 typedef struct _jmethodID* jmethodID; /* method IDs */ typedef
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, jvalue*);
[all …]
/dalvik/libcore/luni/src/main/native/
Djava_io_ObjectStreamClass.c24 jmethodID mid; in java_io_osc_getFieldSignature()
48 jmethodID mid; in java_io_osc_getMethodSignature()
72 jmethodID mid; in java_io_osc_getConstructorSignature()
92 jmethodID mid = (*env)->GetStaticMethodID(env, targetClass, in java_io_osc_hasClinit()
Djava_io_FileDescriptor.c35 jmethodID constructorInt;
36 jmethodID setFD;
Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp152 jmethodID iaddr_class_init;
153 jmethodID iaddr_getbyaddress;
157 jmethodID integer_class_init;
160 jmethodID boolean_class_init;
163 jmethodID byte_class_init;
166 jmethodID string_class_init;
347 jmethodID tempMethod; in newJavaLangBoolean()
365 jmethodID tempMethod; in newJavaLangByte()
383 jmethodID tempMethod; in newJavaLangInteger()
401 jmethodID tempMethod; in newJavaLangString()
[all …]
Djava_net_NetworkInterface.c289jmethodID iaddrgetbyaddress = (*env)->GetStaticMethodID(env, iaddrclass, "getByAddress", "([B)Ljav… in structInToInetAddress()
704 jmethodID methodID = NULL; in getNetworkInterfacesImpl()
705 jmethodID utilMid = NULL; in getNetworkInterfacesImpl()
Djava_io_ObjectInputStream.c187 jmethodID mid = in java_newInstance()
/dalvik/libcore/icu/src/main/native/
DRBNFInterface.cpp149 jmethodID setBeginIndexMethodID = env->GetMethodID(fieldPositionClass, in formatLongRBNFImpl()
151 jmethodID setEndIndexMethodID = env->GetMethodID(fieldPositionClass, in formatLongRBNFImpl()
153 jmethodID appendMethodID = env->GetMethodID(stringBufferClass, in formatLongRBNFImpl()
211 jmethodID setBeginIndexMethodID = env->GetMethodID(fieldPositionClass, in formatDoubleRBNFImpl()
213 jmethodID setEndIndexMethodID = env->GetMethodID(fieldPositionClass, in formatDoubleRBNFImpl()
215 jmethodID appendMethodID = env->GetMethodID(stringBufferClass, in formatDoubleRBNFImpl()
285 jmethodID getIndexMethodID = env->GetMethodID(parsePositionClass, in parseRBNFImpl()
287 jmethodID setIndexMethodID = env->GetMethodID(parsePositionClass, in parseRBNFImpl()
289 jmethodID setErrorIndexMethodID = env->GetMethodID(parsePositionClass, in parseRBNFImpl()
292 jmethodID longInitMethodID = env->GetMethodID(longClass, "<init>", "(J)V"); in parseRBNFImpl()
[all …]
DDecimalFormatInterface.cpp295 jmethodID setBeginIndexMethodID = env->GetMethodID(fieldPositionClass, in formatLong()
297 jmethodID setEndIndexMethodID = env->GetMethodID(fieldPositionClass, in formatLong()
299 jmethodID appendMethodID = env->GetMethodID(stringBufferClass, in formatLong()
403 jmethodID setBeginIndexMethodID = env->GetMethodID(fieldPositionClass, in formatDouble()
405 jmethodID setEndIndexMethodID = env->GetMethodID(fieldPositionClass, in formatDouble()
407 jmethodID appendMethodID = env->GetMethodID(stringBufferClass, in formatDouble()
613 jmethodID appendMethodID = env->GetMethodID(stringBufferClass, in formatDigitList()
639 jmethodID setBeginIndexMethodID = env->GetMethodID( in formatDigitList()
641 jmethodID setEndIndexMethodID = env->GetMethodID( in formatDigitList()
697 jmethodID getIndexMethodID = env->GetMethodID(parsePositionClass, in parse()
[all …]
DBidiWrapperInterface.c165 jmethodID initID = 0; in Java_org_apache_harmony_text_BidiWrapper_ubidi_1getRuns()
DRegExInterface.cpp46 jmethodID method = env->GetMethodID(clazz, "<init>", in throwPatternSyntaxException()
DResourceInterface.cpp948 jmethodID integerInit = env->GetMethodID(integer_class, "<init>", "(I)V"); in getContentImpl()
/dalvik/dalvikvm/
DMain.c92 static int methodIsPublic(JNIEnv* env, jclass clazz, jmethodID methodId) in methodIsPublic()
97 jmethodID getModifiersId; in methodIsPublic()
240 jmethodID startMeth; in main()
/dalvik/libcore/xml/src/main/native/
Dorg_apache_harmony_xml_ExpatParser.cpp91 static jmethodID startElementMethod;
92 static jmethodID endElementMethod;
93 static jmethodID textMethod;
94 static jmethodID commentMethod;
95 static jmethodID startCdataMethod;
96 static jmethodID endCdataMethod;
97 static jmethodID startDtdMethod;
98 static jmethodID endDtdMethod;
99 static jmethodID startNamespaceMethod;
100 static jmethodID endNamespaceMethod;
[all …]
/dalvik/vm/
DJni.c1245 static jmethodID FromReflectedMethod(JNIEnv* env, jobject method) in FromReflectedMethod()
1248 jmethodID methodID; in FromReflectedMethod()
1249 methodID = (jmethodID) dvmGetMethodFromReflectObj((Object*)method); in FromReflectedMethod()
1272 static jobject ToReflectedMethod(JNIEnv* env, jclass cls, jmethodID methodID, in ToReflectedMethod()
1554 static jobject NewObject(JNIEnv* env, jclass jclazz, jmethodID methodID, ...) in NewObject()
1580 static jobject NewObjectV(JNIEnv* env, jclass clazz, jmethodID methodID, in NewObjectV()
1597 static jobject NewObjectA(JNIEnv* env, jclass clazz, jmethodID methodID, in NewObjectA()
1661 static jmethodID GetMethodID(JNIEnv* env, jclass jclazz, const char* name, in GetMethodID()
1667 jmethodID id = NULL; in GetMethodID()
1703 id = (jmethodID) meth; in GetMethodID()
[all …]
DCheckJni.c599 static void checkSig(JNIEnv* env, jmethodID methodID, char expectedSigByte, in checkSig()
1023 static jmethodID Check_FromReflectedMethod(JNIEnv* env, jobject method) in Check_FromReflectedMethod()
1027 jmethodID result; in Check_FromReflectedMethod()
1044 jmethodID methodID, jboolean isStatic) in Check_ToReflectedMethod()
1202 static jobject Check_NewObject(JNIEnv* env, jclass clazz, jmethodID methodID, in Check_NewObject()
1217 static jobject Check_NewObjectV(JNIEnv* env, jclass clazz, jmethodID methodID, in Check_NewObjectV()
1227 static jobject Check_NewObjectA(JNIEnv* env, jclass clazz, jmethodID methodID, in Check_NewObjectA()
1259 static jmethodID Check_GetMethodID(JNIEnv* env, jclass clazz, const char* name, in Check_GetMethodID()
1266 jmethodID result; in Check_GetMethodID()
1285 static jmethodID Check_GetStaticMethodID(JNIEnv* env, jclass clazz, in Check_GetStaticMethodID()
[all …]
/dalvik/libcore/x-net/src/main/native/
Dorg_apache_harmony_xnet_provider_jsse_common.h112 jmethodID methodID = mydata->env->GetMethodID(cls, "verify_callback", "([[B)I"); in verify_callback()
/dalvik/libcore/luni-kernel/src/main/native/
Djava_lang_ProcessManager.c37 static jmethodID onExitMethod = NULL;
/dalvik/libcore/sql/src/main/native/
Dsqlite_jni.c138 static jmethodID M_java_lang_String_getBytes = 0;
139 static jmethodID M_java_lang_String_getBytes2 = 0;
140 static jmethodID M_java_lang_String_initBytes = 0;
141 static jmethodID M_java_lang_String_initBytes2 = 0;
417 jmethodID mid = (*env)->GetMethodID(env, cls, "busy", in busyhandler()
443 jmethodID mid = (*env)->GetMethodID(env, cls, "busy", in busyhandler3()
465 jmethodID mid = (*env)->GetMethodID(env, cls, "progress", "()Z"); in progresshandler()
484 jmethodID mid; in callback()
1606 jmethodID mid = in call_common()
1659 jmethodID mid = (*env)->GetMethodID(env, cls, "last_step", in call_final()
[all …]