Home
last modified time | relevance | path

Searched refs:group (Results 1 – 25 of 25) sorted by relevance

/art/test/169-threadgroup-jni/src/
DMain.java21 ThreadGroup group = new ThreadGroup("Test group"); in main() local
22 group.setDaemon(true); in main()
24 testNativeThread(group); in main()
29 if (!group.isDestroyed()) { in main()
38 private static native void testNativeThread(ThreadGroup group); in testNativeThread() argument
/art/test/1936-thread-end-events/
Djvm-expected.patch7 > | group: java.lang.ThreadGroup[name=main,maxpri=10]
10 < | group: java.lang.ThreadGroup[name=main,maxpri=10]
12 > | group: null
14 < | group: java.lang.ThreadGroup[name=main,maxpri=10]
16 > | group: null
Dexpected.txt6 | group: java.lang.ThreadGroup[name=main,maxpri=10]
13 | group: java.lang.ThreadGroup[name=main,maxpri=10]
20 | group: java.lang.ThreadGroup[name=main,maxpri=10]
27 | group: java.lang.ThreadGroup[name=main,maxpri=10]
34 | group: java.lang.ThreadGroup[name=main,maxpri=10]
41 | group: java.lang.ThreadGroup[name=main,maxpri=10]
/art/tools/
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(0))):]
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/openjdkjvmti/
Dti_threadgroup.h47 jthreadGroup group,
51 jthreadGroup group,
Dti_threadgroup.cc91 jthreadGroup group, in GetThreadGroupInfo() argument
93 if (group == nullptr) { in GetThreadGroupInfo()
98 if (soa.Env()->IsInstanceOf(group, art::WellKnownClasses::java_lang_ThreadGroup) == JNI_FALSE) { in GetThreadGroupInfo()
102 art::ObjPtr<art::mirror::Object> obj = soa.Decode<art::mirror::Object>(group); in GetThreadGroupInfo()
164 art::ObjPtr<art::mirror::Object> group = thread_group_field->GetObject(peer); in IsInDesiredThreadGroup() local
165 return (group == desired_thread_group.Get()); in IsInDesiredThreadGroup()
216 jthreadGroup group, in GetThreadGroupChildren() argument
221 if (group == nullptr) { in GetThreadGroupChildren()
227 if (!soa.Env()->IsInstanceOf(group, art::WellKnownClasses::java_lang_ThreadGroup)) { in GetThreadGroupChildren()
233 soa.Decode<art::mirror::Object>(group)); in GetThreadGroupChildren()
Dti_thread.cc298 art::ObjPtr<art::mirror::Object> group = f->GetObject(peer); in GetThreadInfo() local
299 info_ptr->thread_group = group == nullptr in GetThreadInfo()
301 : soa.AddLocalReference<jthreadGroup>(group); in GetThreadInfo()
358 art::ObjPtr<art::mirror::Object> group = f->GetObject(peer); in GetThreadInfo() local
359 info_ptr->thread_group = group == nullptr in GetThreadInfo()
361 : soa.AddLocalReference<jthreadGroup>(group); in GetThreadInfo()
DOpenjdkJvmTi.cc264 jthreadGroup group, in GetThreadGroupInfo() argument
267 return ThreadGroupUtil::GetThreadGroupInfo(env, group, info_ptr); in GetThreadGroupInfo()
271 jthreadGroup group, in GetThreadGroupChildren() argument
278 group, in GetThreadGroupChildren()
/art/tools/checker/
DREADME11 passes. Each group of check lines therefore must start with a 'CHECK-START'
12 header which specifies the output group it should be tested against. The group
18 - CHECK: Must match an output line which appears in the output group
22 - CHECK-DAG: Must match an output line which appears in the output group
26 - CHECK-NOT: Must not match any output line which appears in the output group
29 Surrounding non-negative checks (or boundaries of the group)
46 only valid within the scope of the defining group. Within a group they cannot
57 group named on the first line. Together they verify that the CFG after
71 A group of check lines can be made architecture-specific by inserting '-<arch>'
/art/test/925-threadgroups/
Dthreadgroups.cc58 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jthreadGroup group) { in Java_art_Test925_getThreadGroupInfo() argument
60 jvmtiError result = jvmti_env->GetThreadGroupInfo(group, &info); in Java_art_Test925_getThreadGroupInfo()
90 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jthreadGroup group) { in Java_art_Test925_getThreadGroupChildren() argument
96 jvmtiError result = jvmti_env->GetThreadGroupChildren(group, in Java_art_Test925_getThreadGroupChildren()
/art/test/testrunner/
Drun_build_test_target.py41 group = parser.add_mutually_exclusive_group(required=True) variable
42 group.add_argument('build_target', nargs='?')
43 group.add_argument('-l', '--list', action='store_true', help='List all possible run-build targets.')
Dtestrunner.py870 _user_input_variants['target'].add(match.group(1))
871 _user_input_variants['run'].add(match.group(2))
872 _user_input_variants['prebuild'].add(match.group(3))
873 _user_input_variants['compiler'].add(match.group(4))
874 _user_input_variants['relocate'].add(match.group(5))
875 _user_input_variants['trace'].add(match.group(6))
876 _user_input_variants['gc'].add(match.group(7))
877 _user_input_variants['jni'].add(match.group(8))
878 _user_input_variants['image'].add(match.group(9))
879 _user_input_variants['debuggable'].add(match.group(10))
[all …]
/art/tools/luci/config/
Dproject.cfg4 access: "group:all" # public
Dcr-buildbucket.cfg12 group: "all"
16 group: "project-art-admins"
Dluci-logdog.cfg8 # the Chromium auth group and buckets.
Dluci-scheduler.cfg11 granted_to: "group:all"
15 granted_to: "group:project-art-admins"
/art/runtime/interpreter/mterp/
Dgen_mterp.py36 opcodes.append("op_" + match.group(2).lower())
73 indent = indent_re.match(line).group(1)
/art/test/
DAndroid.run-test.mk148 define define-test-art-host-or-target-run-test-group
160 $(call define-test-art-host-or-target-run-test-group,$(target))))
167 define-test-art-host-or-target-run-test-group :=
/art/tools/jfuzz/
Drun_jfuzz_test_nightly.py74 output_dirs.append(directory_match.group(1))
/art/tools/runtime_memusage/
Dprune_sanitizer_output.py71 trace_line_matches = [(match_to_int(match.group()), match.start())
/art/tools/dexfuzz/src/dexfuzz/executors/
DDevice.java247 ret.add(m.group(1).trim().replace("\'", "")); in splitCommand()
/art/openjdkjvmti/include/
Djvmti.h1069 jthreadGroup group,
1074 jthreadGroup group,
1887 jvmtiError GetThreadGroupInfo(jthreadGroup group, in GetThreadGroupInfo()
1889 return functions->GetThreadGroupInfo(this, group, info_ptr); in GetThreadGroupInfo()
1892 jvmtiError GetThreadGroupChildren(jthreadGroup group, in GetThreadGroupChildren()
1897 …return functions->GetThreadGroupChildren(this, group, thread_count_ptr, threads_ptr, group_count_p… in GetThreadGroupChildren()
/art/runtime/
Ddebugger.cc2100 ObjPtr<mirror::Object> group = f->GetObject(thread_object); in GetThreadGroup() local
2101 CHECK(group != nullptr); in GetThreadGroup()
2102 JDWP::ObjectId thread_group_id = gRegistry->Add(group); in GetThreadGroup()
2233 ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass()); in GetSystemThreadGroupId() local
2234 return gRegistry->Add(group); in GetSystemThreadGroupId()
2333 ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer); in IsInDesiredThreadGroup() local
2334 return (group == desired_thread_group); in IsInDesiredThreadGroup()
/art/runtime/jni/
Djava_vm_ext.cc456 thread_group = args->group; in AttachCurrentThreadInternal()