Lines Matching refs:chars
173 ScopedUtfChars chars(env, method_name); in Java_Main_isAotCompiled() local
174 CHECK(chars.c_str() != nullptr); in Java_Main_isAotCompiled()
176 chars.c_str(), kRuntimePointerSize); in Java_Main_isAotCompiled()
185 static ArtMethod* GetMethod(ScopedObjectAccess& soa, jclass cls, const ScopedUtfChars& chars) in GetMethod() argument
187 CHECK(chars.c_str() != nullptr); in GetMethod()
189 chars.c_str(), kRuntimePointerSize); in GetMethod()
192 chars.c_str(), kRuntimePointerSize); in GetMethod()
194 DCHECK(method != nullptr) << "Unable to find method called " << chars.c_str(); in GetMethod()
208 ScopedUtfChars chars(env, method_name); in Java_Main_hasJitCompiledEntrypoint() local
209 ArtMethod* method = GetMethod(soa, cls, chars); in Java_Main_hasJitCompiledEntrypoint()
225 ScopedUtfChars chars(env, method_name); in Java_Main_hasJitCompiledCode() local
226 ArtMethod* method = GetMethod(soa, cls, chars); in Java_Main_hasJitCompiledCode()
336 ScopedUtfChars chars(env, method_name); in Java_Main_ensureJitCompiled() local
337 method = GetMethod(soa, cls, chars); in Java_Main_ensureJitCompiled()
356 ScopedUtfChars chars(env, method_name); in Java_Main_ensureJitBaselineCompiled() local
357 method = GetMethod(soa, cls, chars); in Java_Main_ensureJitBaselineCompiled()
368 ScopedUtfChars chars(env, method_name); in Java_Main_hasSingleImplementation() local
369 CHECK(chars.c_str() != nullptr); in Java_Main_hasSingleImplementation()
371 chars.c_str(), kRuntimePointerSize); in Java_Main_hasSingleImplementation()
380 ScopedUtfChars chars(env, method_name); in Java_Main_getHotnessCounter() local
381 CHECK(chars.c_str() != nullptr); in Java_Main_getHotnessCounter()
383 soa.Decode<mirror::Class>(cls)->FindDeclaredDirectMethodByName(chars.c_str(), in Java_Main_getHotnessCounter()
389 method = soa.Decode<mirror::Class>(cls)->FindDeclaredVirtualMethodByName(chars.c_str(), in Java_Main_getHotnessCounter()
456 ScopedUtfChars chars(env, method_name); in Java_Main_deoptimizeNativeMethod() local
457 ArtMethod* method = GetMethod(soa, cls, chars); in Java_Main_deoptimizeNativeMethod()