/art/test/169-threadgroup-jni/src/ |
D | Main.java | 21 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/ |
D | jvm-expected.patch | 7 > | 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
|
D | expected.txt | 6 | 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/ |
D | generate_operator_out.py | 60 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))):]
|
D | analyze-init-failures.py | 57 failed_clazz = m.group(1).replace('/','.') 67 error = m.group(1) 75 method = m.group(1) 95 method = m.group(1)
|
/art/openjdkjvmti/ |
D | ti_threadgroup.h | 47 jthreadGroup group, 51 jthreadGroup group,
|
D | ti_threadgroup.cc | 91 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()
|
D | ti_thread.cc | 298 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()
|
D | OpenjdkJvmTi.cc | 264 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/ |
D | README | 11 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/ |
D | threadgroups.cc | 58 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/ |
D | run_build_test_target.py | 41 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.')
|
D | testrunner.py | 870 _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/ |
D | project.cfg | 4 access: "group:all" # public
|
D | cr-buildbucket.cfg | 12 group: "all" 16 group: "project-art-admins"
|
D | luci-logdog.cfg | 8 # the Chromium auth group and buckets.
|
D | luci-scheduler.cfg | 11 granted_to: "group:all" 15 granted_to: "group:project-art-admins"
|
/art/runtime/interpreter/mterp/ |
D | gen_mterp.py | 36 opcodes.append("op_" + match.group(2).lower()) 73 indent = indent_re.match(line).group(1)
|
/art/test/ |
D | Android.run-test.mk | 148 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/ |
D | run_jfuzz_test_nightly.py | 74 output_dirs.append(directory_match.group(1))
|
/art/tools/runtime_memusage/ |
D | prune_sanitizer_output.py | 71 trace_line_matches = [(match_to_int(match.group()), match.start())
|
/art/tools/dexfuzz/src/dexfuzz/executors/ |
D | Device.java | 247 ret.add(m.group(1).trim().replace("\'", "")); in splitCommand()
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 1069 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/ |
D | debugger.cc | 2100 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/ |
D | java_vm_ext.cc | 456 thread_group = args->group; in AttachCurrentThreadInternal()
|