OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thrs
(Results
1 - 2
of
2
) sorted by null
/art/test/ti-agent/
suspension_helper.cc
37
static std::vector<jthread> CopyToVector(JNIEnv* env, jobjectArray
thrs
) {
38
jsize len = env->GetArrayLength(
thrs
);
41
ret.push_back(reinterpret_cast<jthread>(env->GetObjectArrayElement(
thrs
, i)));
69
jobjectArray
thrs
) {
71
std::vector<jthread> threads(CopyToVector(env,
thrs
));
/art/test/1900-track-alloc/src/art/
Test1900.java
39
Thread[]
thrs
= new Thread[rs.length];
local
42
thrs
[i] = new Thread(() -> {
46
thrs
[i].start();
48
for (Thread thr :
thrs
) {
Completed in 307 milliseconds