Home | History | Annotate | Download | only in jni

Lines Matching full:fieldname

47     static String8 getStringValue(JNIEnv* env, jobject object, const char* fieldName);
50 JNIEnv* env, jobject object, const char* fieldName, int* dataLength);
57 static int getIntValue(JNIEnv* env, jobject object, const char* fieldName);
60 String8 Utility::getStringValue(JNIEnv* env, jobject object, const char* fieldName) {
61 /* Look for the instance field with the name fieldName */
63 = env->GetFieldID(env->GetObjectClass(object), fieldName , "Ljava/lang/String;");
92 JNIEnv* env, jobject object, const char* fieldName, int* dataLength) {
96 jfieldID fieldID = env->GetFieldID(env->GetObjectClass(object), fieldName , "[B");
119 int Utility::getIntValue(JNIEnv* env, jobject object, const char* fieldName) {
125 /* Look for the instance field with the name fieldName */
126 fieldID = env->GetFieldID(clazz, fieldName , "I");