Home | History | Annotate | Download | only in runtime

Lines Matching refs:signature

125 static jfieldID CacheField(JNIEnv* env, jclass c, bool is_static, const char* name, const char* signature) {
126 jfieldID fid = is_static ? env->GetStaticFieldID(c, name, signature) : env->GetFieldID(c, name, signature);
128 LOG(FATAL) << "Couldn't find field \"" << name << "\" with signature \"" << signature << "\"";
133 jmethodID CacheMethod(JNIEnv* env, jclass c, bool is_static, const char* name, const char* signature) {
134 jmethodID mid = is_static ? env->GetStaticMethodID(c, name, signature) : env->GetMethodID(c, name, signature);
136 LOG(FATAL) << "Couldn't find method \"" << name << "\" with signature \"" << signature << "\"";