Searched refs:thrs (Results 1 – 2 of 2) sorted by relevance
37 static std::vector<jthread> CopyToVector(JNIEnv* env, jobjectArray thrs) { in CopyToVector() argument38 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() argument71 std::vector<jthread> threads(CopyToVector(env, thrs)); in Java_art_Suspension_suspendList()
39 Thread[] thrs = new Thread[rs.length]; in runConcurrent() local42 thrs[i] = new Thread(() -> { in runConcurrent()46 thrs[i].start(); in runConcurrent()48 for (Thread thr : thrs) { in runConcurrent()