Searched defs:group (Results 1 - 9 of 9) sorted by relevance

/art/test/169-threadgroup-jni/src/
H A DMain.java21 ThreadGroup group = new ThreadGroup("Test group");
22 group.setDaemon(true);
24 testNativeThread(group);
29 if (!group.isDestroyed()) {
38 private static native void testNativeThread(ThreadGroup group); argument
/art/test/925-threadgroups/
H A Dthreadgroups.cc58 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jthreadGroup group) {
60 jvmtiError result = jvmti_env->GetThreadGroupInfo(group, &info);
90 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jthreadGroup group) {
96 jvmtiError result = jvmti_env->GetThreadGroupChildren(group,
57 Java_art_Test925_getThreadGroupInfo( JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jthreadGroup group) argument
89 Java_art_Test925_getThreadGroupChildren( JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jthreadGroup group) argument
/art/test/testrunner/
H A Drun_build_test_target.py40 group = parser.add_mutually_exclusive_group(required=True) variable
41 group.add_argument('build_target', nargs='?')
42 group.add_argument('-l', '--list', action='store_true', help='List all possible run-build targets.')
/art/test/
H A DAndroid.run-test.mk152 # Create a rule to build and run a test group of the following form:
154 define define-test-art-host-or-target-run-test-group
163 endef # define-test-art-host-or-target-run-test-group
166 $(call define-test-art-host-or-target-run-test-group,$(target))))
173 define-test-art-host-or-target-run-test-group :=
/art/openjdkjvmti/
H A Dti_threadgroup.cc58 // We only have a single top group. So we can take the current thread and move upwards.
91 jthreadGroup group,
93 if (group == nullptr) {
98 if (soa.Env()->IsInstanceOf(group, art::WellKnownClasses::java_lang_ThreadGroup) == JNI_FALSE) {
102 art::ObjPtr<art::mirror::Object> obj = soa.Decode<art::mirror::Object>(group);
164 art::ObjPtr<art::mirror::Object> group = thread_group_field->GetObject(peer); local
165 return (group == desired_thread_group.Get());
193 // Get the ThreadGroup[] "groups" out of this thread group...
216 jthreadGroup group,
221 if (group
90 GetThreadGroupInfo(jvmtiEnv* env, jthreadGroup group, jvmtiThreadGroupInfo* info_ptr) argument
215 GetThreadGroupChildren(jvmtiEnv* env, jthreadGroup group, jint* thread_count_ptr, jthread** threads_ptr, jint* group_count_ptr, jthreadGroup** groups_ptr) argument
[all...]
H A Dti_thread.cc239 art::ObjPtr<art::mirror::Object> group = f->GetObject(peer); local
240 info_ptr->thread_group = group == nullptr
242 : soa.AddLocalReference<jthreadGroup>(group);
299 art::ObjPtr<art::mirror::Object> group = f->GetObject(peer); local
300 info_ptr->thread_group = group == nullptr
302 : soa.AddLocalReference<jthreadGroup>(group);
H A DOpenjdkJvmTi.cc254 jthreadGroup group,
257 return ThreadGroupUtil::GetThreadGroupInfo(env, group, info_ptr);
261 jthreadGroup group,
268 group,
253 GetThreadGroupInfo(jvmtiEnv* env, jthreadGroup group, jvmtiThreadGroupInfo* info_ptr) argument
260 GetThreadGroupChildren(jvmtiEnv* env, jthreadGroup group, jint* thread_count_ptr, jthread** threads_ptr, jint* group_count_ptr, jthreadGroup** groups_ptr) argument
/art/runtime/
H A Ddebugger.cc159 // send the METHOD_ENTRY event. And we can also group it with other events for this location
167 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
2125 // Zombie threads are in the null group.
2133 ObjPtr<mirror::Object> group = f->GetObject(thread_object); local
2134 CHECK(group != nullptr);
2135 JDWP::ObjectId thread_group_id = gRegistry->Add(group);
2206 // Get the int "ngroups" count of this thread group...
2214 // Get the ThreadGroup[] "groups" out of this thread group...
2266 ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass()); local
2267 return gRegistry->Add(group);
2365 ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer); local
[all...]
/art/openjdkjvmti/include/
H A Djvmti.h1069 jthreadGroup group,
1074 jthreadGroup group,
1887 jvmtiError GetThreadGroupInfo(jthreadGroup group, argument
1889 return functions->GetThreadGroupInfo(this, group, info_ptr);
1892 jvmtiError GetThreadGroupChildren(jthreadGroup group, argument
1897 return functions->GetThreadGroupChildren(this, group, thread_count_ptr, threads_ptr, group_count_ptr, groups_ptr);

Completed in 204 milliseconds