/art/test/1930-monitor-info/ |
D | expected.txt | 2 Pre-lock[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testSingleThread], owner: <NULL>, entry… 3 Thread[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testSingleThread], owner: main, entryCoun… 5 Pre-lock[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testSingleThread], owner: <NULL>, entry… 6 Thread[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testSingleThread], owner: main, entryCoun… 8 Pre-lock[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testLockedTwice], owner: <NULL>, entryC… 9 Pre-lock[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testLockedTwice], owner: main, entryCou… 10 Thread[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testLockedTwice], owner: main, entryCount… 12 Pre-lock[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testLockedTwiceNative], owner: <NULL>, … 13 Pre-lock[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testLockedTwiceNative], owner: main, en… 14 Thread[main]: MonitorUsage{ monitor: NamedLock[Test1930 - testLockedTwiceNative], owner: main, entr… [all …]
|
/art/test/979-const-method-handle/src/ |
D | Main.java | 102 owner = "Main", 112 owner = "Main", 122 owner = "Main", 132 owner = "java/lang/Math", 142 owner = "java/lang/Math", 152 owner = "java/io/StreamTokenizer", 164 owner = "java/io/StreamTokenizer", 174 owner = "java/util/Stack", 184 owner = "java/util/Stack",
|
/art/test/1932-monitor-events-misc/ |
D | expected.txt | 11 lock state is: MonitorUsage{ monitor: NamedLock[Lock testLockThrowEnter], owner: <NULL>, entryCount… 18 lock state is: MonitorUsage{ monitor: NamedLock[Lock testLockThrowEntered], owner: <NULL>, entryCou… 26 lock state is: MonitorUsage{ monitor: NamedLock[Lock testLockThrowBoth], owner: <NULL>, entryCount:… 32 lock state is: MonitorUsage{ monitor: NamedLock[Lock testThrowWait], owner: <NULL>, entryCount: 0, … 38 lock state is: MonitorUsage{ monitor: NamedLock[Lock testThrowIllegalWait], owner: <NULL>, entryCou… 45 lock state is: MonitorUsage{ monitor: NamedLock[Lock testThrowWaited], owner: <NULL>, entryCount: 0… 52 lock state is: MonitorUsage{ monitor: NamedLock[Lock testThrowWaitedTimeout], owner: <NULL>, entryC… 59 lock state is: MonitorUsage{ monitor: NamedLock[Lock testThrowWaitedInterrupt], owner: <NULL>, entr… 62 …torEnter: MonitorUsage{ monitor: NamedLock[Lock testMonitorInfoInEvents], owner: Locker thread 14 … 64 …rEntered: MonitorUsage{ monitor: NamedLock[Lock testMonitorInfoInEvents], owner: Locker thread 15 … [all …]
|
/art/test/1933-monitor-current-contended/src/art/ |
D | Monitors.java | 77 public final Thread owner; field in Monitors.MonitorUsage 84 Thread owner, in MonitorUsage() argument 90 this.owner = owner; in MonitorUsage() 103 (owner != null) ? owner.getName() : "<NULL>", in toString() 243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) { in waitForLockToBeHeld()
|
/art/test/1930-monitor-info/src/art/ |
D | Monitors.java | 77 public final Thread owner; field in Monitors.MonitorUsage 84 Thread owner, in MonitorUsage() argument 90 this.owner = owner; in MonitorUsage() 103 (owner != null) ? owner.getName() : "<NULL>", in toString() 243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) { in waitForLockToBeHeld()
|
/art/test/1934-jvmti-signal-thread/src/art/ |
D | Monitors.java | 77 public final Thread owner; field in Monitors.MonitorUsage 84 Thread owner, in MonitorUsage() argument 90 this.owner = owner; in MonitorUsage() 103 (owner != null) ? owner.getName() : "<NULL>", in toString() 243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) { in waitForLockToBeHeld()
|
/art/test/1931-monitor-events/src/art/ |
D | Monitors.java | 77 public final Thread owner; field in Monitors.MonitorUsage 84 Thread owner, in MonitorUsage() argument 90 this.owner = owner; in MonitorUsage() 103 (owner != null) ? owner.getName() : "<NULL>", in toString() 243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) { in waitForLockToBeHeld()
|
/art/test/1932-monitor-events-misc/src/art/ |
D | Monitors.java | 77 public final Thread owner; field in Monitors.MonitorUsage 84 Thread owner, in MonitorUsage() argument 90 this.owner = owner; in MonitorUsage() 103 (owner != null) ? owner.getName() : "<NULL>", in toString() 243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) { in waitForLockToBeHeld()
|
/art/runtime/ |
D | monitor.cc | 92 Monitor::Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code) in Monitor() argument 96 owner_(owner), in Monitor() 111 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor() 116 Thread* owner, in Monitor() argument 123 owner_(owner), in Monitor() 137 CHECK(owner == nullptr || owner == self || owner->IsSuspended()); in Monitor() 706 Thread* owner = owner_; in Unlock() local 707 if (owner != nullptr) { in Unlock() 708 owner_thread_id = owner->GetThreadId(); in Unlock() 710 if (owner == self) { in Unlock() [all …]
|
D | monitor_pool.h | 46 Thread* owner, in CreateMonitor() argument 51 Monitor* mon = new Monitor(self, owner, obj, hash_code); in CreateMonitor() 55 return GetMonitorPool()->CreateMonitorInPool(self, owner, obj, hash_code); in CreateMonitor() 129 Thread* owner,
|
D | monitor_pool.cc | 109 Thread* owner, in CreateMonitorInPool() argument 129 Monitor* monitor = new(mon_uninitialized) Monitor(self, owner, obj, hash_code, id); in CreateMonitorInPool()
|
D | monitor.h | 173 Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code) 175 Monitor(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code, MonitorId id) 198 static void Inflate(Thread* self, Thread* owner, ObjPtr<mirror::Object> obj, int32_t hash_code)
|
/art/test/979-const-method-handle/util-src/annotations/ |
D | ConstantMethodHandle.java | 48 String owner(); in owner() method
|
/art/libartbase/base/ |
D | utils.cc | 160 uint64_t owner; in GetTid() local 161 CHECK_PTHREAD_CALL(pthread_threadid_np, (nullptr, &owner), __FUNCTION__); // Requires Mac OS 10.6 in GetTid() 162 return owner; in GetTid()
|
/art/libelffile/elf/ |
D | elf_builder.h | 90 Section(ElfBuilder<ElfTypes>* owner, in Section() argument 99 owner_(owner), in Section() 228 CachedSection(ElfBuilder<ElfTypes>* owner, in CachedSection() argument 236 : Section(owner, name, type, flags, link, info, align, entsize), cache_() { } in CachedSection() 268 CachedStringSection(ElfBuilder<ElfTypes>* owner, in CachedStringSection() argument 272 : CachedSection(owner, in CachedStringSection() 292 StringSection(ElfBuilder<ElfTypes>* owner, in StringSection() argument 296 : Section(owner, in StringSection() 335 SymbolSection(ElfBuilder<ElfTypes>* owner, in SymbolSection() argument 340 : Section(owner, in SymbolSection() [all …]
|
/art/test/979-const-method-handle/util-src/transformer/ |
D | ConstantTransformer.java | 90 int opcode, String owner, String name, String desc, boolean itf) { in visitMethod() 103 mv.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethod() argument 143 constantMethodHandle.owner(), in visitMethod()
|
/art/test/952-invoke-custom/util-src/transformer/ |
D | IndyTransformer.java | 95 int opcode, String owner, String name, String desc, boolean itf) { in visitMethod() 103 mv.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethod() argument
|
/art/ |
D | NOTICE | 25 "Licensor" shall mean the copyright owner or entity authorized by 26 the copyright owner that is granting the License. 64 submitted to Licensor for inclusion in the Work by the copyright owner 66 the copyright owner. For the purposes of this definition, "submitted" 73 designated in writing by the copyright owner as "Not a Contribution."
|
/art/openjdkjvmti/ |
D | ti_object.cc | 99 usage->owner = info.owner_ != nullptr ? in GetObjectMonitorUsage()
|
/art/compiler/debug/ |
D | elf_debug_info_writer.h | 103 explicit ElfCompilationUnitWriter(ElfDebugInfoWriter<ElfTypes>* owner) in ElfCompilationUnitWriter() argument 104 : owner_(owner), in ElfCompilationUnitWriter() 105 info_(Is64BitInstructionSet(owner_->builder_->GetIsa()), &owner->debug_abbrev_) { in ElfCompilationUnitWriter()
|
/art/test/ti-agent/ |
D | monitors_helper.cc | 69 obj, usage.owner, usage.entry_count, wait, notify_wait); in Java_art_Monitors_getObjectMonitorUsage()
|
/art/test/1922-owned-monitors-info/ |
D | expected.txt | 1 owner-monitors, This thread 114 owner-monitors, no suspend, Other thread 227 owner-monitors, suspend, Other thread 340 owner-monitors-stack-depth, This thread 453 owner-monitors-stack-depth, no suspend, other thread 566 owner-monitors-stack-depth, suspend, other thread
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 610 jthread owner; member
|