Home
last modified time | relevance | path

Searched refs:GetObjectArrayElement (Results 1 – 10 of 10) sorted by relevance

/art/test/ti-agent/
Dredefinition_helper.cc158 classes.push_back(static_cast<jclass>(env->GetObjectArrayElement(targets, i))); in Java_art_Redefinition_doCommonMultiClassRedefinition()
159 dex_files.push_back(static_cast<jbyteArray>(env->GetObjectArrayElement(dex_file_bytes, i))); in Java_art_Redefinition_doCommonMultiClassRedefinition()
160 class_files.push_back(static_cast<jbyteArray>(env->GetObjectArrayElement(class_file_bytes, i))); in Java_art_Redefinition_doCommonMultiClassRedefinition()
306 classes.push_back(static_cast<jclass>(env->GetObjectArrayElement(targets, i))); in DoClassRetransformation()
Dsuspension_helper.cc41 ret.push_back(reinterpret_cast<jthread>(env->GetObjectArrayElement(thrs, i))); in CopyToVector()
/art/test/904-object-allocation/
Dtracking.cc132 thread_lst.push_back(reinterpret_cast<jthread>(env->GetObjectArrayElement(threads, i))); in Java_art_Test904_getTrackingEventMessages()
/art/test/911-get-stack-trace/
Dstack_trace.cc176 threads[i] = env->GetObjectArrayElement(jthreads, i); in Java_art_ThreadListTraces_getThreadListStackTraces()
/art/runtime/jni/
Djni_internal_test.cc1297 EXPECT_TRUE(env_->IsSameObject(env_->GetObjectArrayElement(a, 0), nullptr)); in TEST_F()
1344 EXPECT_TRUE(env_->IsSameObject(env_->GetObjectArrayElement(a, 0), s)); in TEST_F()
1345 EXPECT_TRUE(env_->IsSameObject(env_->GetObjectArrayElement(a, 1), s)); in TEST_F()
1758 EXPECT_EQ(env_->GetObjectArrayElement(array, 0), nullptr); in TEST_F()
1760 EXPECT_TRUE(env_->IsSameObject(env_->GetObjectArrayElement(array, 0), java_lang_Class)); in TEST_F()
1777 EXPECT_EQ(nullptr, env_->GetObjectArrayElement(nullptr, 0)); in TEST_F()
1782 EXPECT_EQ(nullptr, env_->GetObjectArrayElement(nullptr, 0)); in TEST_F()
Dcheck_jni.cc2535 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray array, jsize index) { in GetObjectArrayElement() function in art::__anon01b981930111::CheckJNI
2542 result.L = baseEnv(env)->GetObjectArrayElement(env, array, index); in GetObjectArrayElement()
3944 CheckJNI::GetObjectArrayElement,
Djni_internal.cc2162 static jobject GetObjectArrayElement(JNIEnv* env, jobjectArray java_array, jsize index) { in GetObjectArrayElement() function in art::JNI
3057 JNI::GetObjectArrayElement,
/art/runtime/native/
Ddalvik_system_VMRuntime.cc89 jstring exemption = reinterpret_cast<jstring>(env->GetObjectArrayElement(exemptions, i)); in VMRuntime_setHiddenApiExemptions()
645 jstring code_path = reinterpret_cast<jstring>(env->GetObjectArrayElement(code_paths, i)); in VMRuntime_registerAppInfo()
Ddalvik_system_DexFile.cc260 jobject buffer = env->GetObjectArrayElement(buffers, i); in DexFile_openInMemoryDexFilesNative()
261 jbyteArray array = reinterpret_cast<jbyteArray>(env->GetObjectArrayElement(arrays, i)); in DexFile_openInMemoryDexFilesNative()
/art/test/1953-pop-frame/
Dpop_frame.cc402 jstring name_obj = reinterpret_cast<jstring>(env->GetObjectArrayElement(interesting_names, i)); in Java_art_Test1953_setupSuspendClassEvent()