Home
last modified time | relevance | path

Searched refs:thrs (Results 1 – 2 of 2) sorted by relevance

/art/test/ti-agent/
Dsuspension_helper.cc37 static std::vector<jthread> CopyToVector(JNIEnv* env, jobjectArray thrs) { in CopyToVector() argument
38 jsize len = env->GetArrayLength(thrs); in CopyToVector()
41 ret.push_back(reinterpret_cast<jthread>(env->GetObjectArrayElement(thrs, i))); in CopyToVector()
69 jobjectArray thrs) { in Java_art_Suspension_suspendList() argument
71 std::vector<jthread> threads(CopyToVector(env, thrs)); in Java_art_Suspension_suspendList()
/art/test/1900-track-alloc/src/art/
DTest1900.java39 Thread[] thrs = new Thread[rs.length]; in runConcurrent() local
42 thrs[i] = new Thread(() -> { in runConcurrent()
46 thrs[i].start(); in runConcurrent()
48 for (Thread thr : thrs) { in runConcurrent()