Home | History | Annotate | Download | only in jni

Lines Matching full:fieldname

46     static String8 getStringValue(JNIEnv* env, jobject object, const char* fieldName);
49 JNIEnv* env, jobject object, const char* fieldName, int* dataLength);
56 static int getIntValue(JNIEnv* env, jobject object, const char* fieldName);
59 String8 Utility::getStringValue(JNIEnv* env, jobject object, const char* fieldName) {
62 /* Look for the instance field with the name fieldName */
64 = env->GetFieldID(env->GetObjectClass(object), fieldName , "Ljava/lang/String;");
80 LOGV("Failed to retrieve the data from the field %s", fieldName);
104 JNIEnv* env, jobject object, const char* fieldName, int* dataLength) {
108 jfieldID fieldID = env->GetFieldID(env->GetObjectClass(object), fieldName , "[B");
139 int Utility::getIntValue(JNIEnv* env, jobject object, const char* fieldName) {
145 /* Look for the instance field with the name fieldName */
146 fieldID = env->GetFieldID(clazz, fieldName , "I");