Home | History | Annotate | Download | only in 117-nopatchoat

Lines Matching refs:cls

31   static const OatFile::OatDexFile* getOatDexFile(jclass cls) {
33 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls);
44 static bool hasExecutableOat(jclass cls) {
45 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls);
50 static bool needsRelocation(jclass cls) {
51 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls);
67 extern "C" JNIEXPORT jboolean JNICALL Java_Main_hasExecutableOat(JNIEnv*, jclass cls) {
68 return NoPatchoatTest::hasExecutableOat(cls);
71 extern "C" JNIEXPORT jboolean JNICALL Java_Main_needsRelocation(JNIEnv*, jclass cls) {
72 return NoPatchoatTest::needsRelocation(cls);