HomeSort by relevance Sort by last modified time
    Searched refs:thread_group (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry.py 64 thread_group = reraiser_thread.CurrentThreadGroup()
65 while thread_group:
66 if isinstance(thread_group, TimeoutRetryThreadGroup):
67 return thread_group
68 thread_group = thread_group.blocked_parent_thread_group
153 thread_group = TimeoutRetryThreadGroup(timeout, threads=[child_thread])
154 thread_group.StartAll(will_block=True)
156 thread_group.JoinAll(watcher=thread_group.GetWatcher(), timeout=60
    [all...]
reraiser_thread.py 226 thread_group = ReraiserThreadGroup(ReraiserThread(f) for f in funcs)
227 thread_group.StartAll(will_block=True)
228 return thread_group.GetAllReturnValues(watcher=watcher)
  /external/libmojo/third_party/catapult/devil/devil/utils/
timeout_retry.py 64 thread_group = reraiser_thread.CurrentThreadGroup()
65 while thread_group:
66 if isinstance(thread_group, TimeoutRetryThreadGroup):
67 return thread_group
68 thread_group = thread_group.blocked_parent_thread_group
153 thread_group = TimeoutRetryThreadGroup(timeout, threads=[child_thread])
154 thread_group.StartAll(will_block=True)
156 thread_group.JoinAll(watcher=thread_group.GetWatcher(), timeout=60
    [all...]
reraiser_thread.py 226 thread_group = ReraiserThreadGroup(ReraiserThread(f) for f in funcs)
227 thread_group.StartAll(will_block=True)
228 return thread_group.GetAllReturnValues(watcher=watcher)
  /art/test/169-threadgroup-jni/
jni_daemon_thread.cc 30 jobject thread_group = reinterpret_cast<jobject>(arg); local
32 JavaVMAttachArgs args = { JNI_VERSION_1_6, __FUNCTION__, thread_group };
52 JNIEnv* env, jclass, jobject thread_group) {
54 jobject global_thread_group = env->NewGlobalRef(thread_group);
  /art/test/931-agent-thread/
agent_thread.cc 62 if (info.thread_group != nullptr) {
63 env->DeleteLocalRef(info.thread_group);
118 ScopedLocalRef<jobject> thread_group(env, cur_thread_info.thread_group);
132 thread_group.get(),
  /art/openjdkjvmti/
ti_threadgroup.cc 168 static void GetThreads(art::Handle<art::mirror::Object> thread_group,
171 CHECK(thread_group != nullptr);
182 if (IsInDesiredThreadGroup(thread_group, peer)) {
188 static void GetChildThreadGroups(art::Handle<art::mirror::Object> thread_group,
191 CHECK(thread_group != nullptr);
196 art::ObjPtr<art::mirror::Object> groups_array = groups_field->GetObject(thread_group.Get());
232 art::Handle<art::mirror::Object> thread_group = hs.NewHandle( local
235 art::ObjectLock<art::mirror::Object> thread_group_lock(soa.Self(), thread_group);
238 GetThreads(thread_group, &thread_peers);
241 GetChildThreadGroups(thread_group, &thread_groups)
    [all...]
ti_thread.cc 240 info_ptr->thread_group = group == nullptr
244 info_ptr->thread_group = nullptr;
300 info_ptr->thread_group = group == nullptr
    [all...]
  /art/test/924-threads/
threads.cc 117 return env->NewLocalRef(info.thread_group);
129 if (info.thread_group != nullptr) {
130 env->DeleteLocalRef(info.thread_group);
209 jni_env->DeleteLocalRef(info.thread_group);
  /frameworks/native/services/vr/performanced/
performance_service.cpp 252 Task thread_group{task.thread_group_id()};
253 if (thread_group) {
254 thread_group_cpuset = thread_group.GetCpuSetPath();
  /art/test/ti-agent/
jni_binder.cc 209 if (info.thread_group != nullptr) {
210 env->DeleteLocalRef(info.thread_group);
  /art/runtime/
thread.cc 833 jobject thread_group,
841 self->CreatePeer(thread_name, as_daemon, thread_group);
1644 ObjPtr<mirror::Object> thread_group = local
    [all...]
thread.h 170 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group,
532 void NotifyThreadGroup(ScopedObjectAccessAlreadyRunnable& soa, jobject thread_group = nullptr)
    [all...]
debugger.cc 2144 mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, local
2168 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2185 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
2235 mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); local
    [all...]
java_vm_ext.cc 418 jobject thread_group = nullptr; local
427 thread_group = args->group;
430 if (!runtime->AttachCurrentThread(thread_name, as_daemon, thread_group,
    [all...]
runtime.cc 315 /* thread_group*/ nullptr,
    [all...]
debugger.h 477 static void GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids)
    [all...]
runtime.h 233 bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
    [all...]
  /art/tools/breakpoint-logger/
breakpoint_logger.cc 89 env_->DeleteLocalRef(info_.thread_group);
  /external/oj-libjdwp/src/share/back/
ThreadReferenceImpl.c 182 (void)outStream_writeObjectRef(env, out, info.thread_group);
  /art/test/912-classes/
classes.cc 358 jni_env->DeleteLocalRef(info.thread_group);
  /art/test/ti-stress/
stress.cc 134 env_->DeleteLocalRef(info_.thread_group);
  /art/openjdkjvmti/include/
jvmti.h 522 jthreadGroup thread_group; member in struct:_jvmtiThreadInfo
    [all...]
  /external/oj-libjdwp/src/share/javavm/export/
jvmti.h 522 jthreadGroup thread_group; member in struct:_jvmtiThreadInfo
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/include/
jvmti.h 522 jthreadGroup thread_group; member in struct:_jvmtiThreadInfo
    [all...]

Completed in 511 milliseconds

1 2