Home | History | Annotate | Download | only in runtime

Lines Matching refs:signature

179                            const char* name, const char* signature) {
180 jfieldID fid = is_static ? env->GetStaticFieldID(c, name, signature) :
181 env->GetFieldID(c, name, signature);
189 LOG(FATAL) << "Couldn't find field \"" << name << "\" with signature \"" << signature << "\": "
196 const char* name, const char* signature) {
197 jmethodID mid = is_static ? env->GetStaticMethodID(c, name, signature) :
198 env->GetMethodID(c, name, signature);
206 LOG(FATAL) << "Couldn't find method \"" << name << "\" with signature \"" << signature << "\": "