Searched refs:group (Results 1 - 20 of 20) 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/openjdkjvmti/
H A Dti_threadgroup.h47 jthreadGroup group,
51 jthreadGroup group,
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/tools/
H A Dgenerate_operator_out.py60 if m.group(3) is not None:
64 is_enum_class = m.group(1) is not None
65 enum_name = m.group(2)
77 namespaces.append(m.group(1))
87 enclosing_classes.append(m.group(1))
92 if m and not m.group(2):
114 enum_text = m_comment.group(1)
130 enum_value = m.group(1)
139 rest = m.group(2).strip()
142 rest = rest[(len(m_literal.group(
[all...]
H A Danalyze-init-failures.py57 failed_clazz = m.group(1).replace('/','.')
67 error = m.group(1)
75 method = m.group(1)
95 method = m.group(1)
/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.')
H A Denv.py72 key = match.group(1)
73 value = match.group(2)
H A Dtestrunner.py863 _user_input_variants['target'].add(match.group(1))
864 _user_input_variants['run'].add(match.group(2))
865 _user_input_variants['prebuild'].add(match.group(3))
866 _user_input_variants['compiler'].add(match.group(4))
867 _user_input_variants['relocate'].add(match.group(5))
868 _user_input_variants['trace'].add(match.group(6))
869 _user_input_variants['gc'].add(match.group(7))
870 _user_input_variants['jni'].add(match.group(8))
871 _user_input_variants['image'].add(match.group(9))
872 _user_input_variants['pictest'].add(match.group(1
[all...]
/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/tools/jfuzz/
H A Drun_jfuzz_test_nightly.py74 output_dirs.append(directory_match.group(1))
/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/tools/runtime_memusage/
H A Dprune_sanitizer_output.py71 trace_line_matches = [(match_to_int(match.group()), match.start())
/art/tools/dexfuzz/src/dexfuzz/executors/
H A DDevice.java247 ret.add(m.group(1).trim().replace("\'", ""));
/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);
/art/runtime/interpreter/mterp/
H A Dgen_mterp.py262 opcodes.append("op_" + match.group(2).lower())
/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...]
H A Djava_vm_ext.cc427 thread_group = args->group;
H A Dthread.cc713 // TODO: remove from thread group?
1684 os << " | group=\"" << group_name << "\""
2080 // There is always a group set. Retrieve it.
2314 // this.group.removeThread(this);
2315 // group can be null if we're in the compiler or a test.
2319 ScopedLocalRef<jobject> group(soa.Env(), soa.AddLocalReference<jobject>(ogroup));
2322 tlsPtr_.jni_env->CallVoidMethod(group.get(),

Completed in 960 milliseconds