Home
last modified time | relevance | path

Searched refs:owner (Results 1 – 23 of 23) sorted by relevance

/art/test/1930-monitor-info/
Dexpected.txt2 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/
DMain.java102 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/
Dexpected.txt11 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/
DMonitors.java77 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/
DMonitors.java77 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/
DMonitors.java77 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/
DMonitors.java77 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/
DMonitors.java77 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/
Dmonitor.cc92 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 …]
Dmonitor_pool.h46 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,
Dmonitor_pool.cc109 Thread* owner, in CreateMonitorInPool() argument
129 Monitor* monitor = new(mon_uninitialized) Monitor(self, owner, obj, hash_code, id); in CreateMonitorInPool()
Dmonitor.h173 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/
DConstantMethodHandle.java48 String owner(); in owner() method
/art/libartbase/base/
Dutils.cc160 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/
Delf_builder.h90 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/
DConstantTransformer.java90 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/
DIndyTransformer.java95 int opcode, String owner, String name, String desc, boolean itf) { in visitMethod()
103 mv.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethod() argument
/art/
DNOTICE25 "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/
Dti_object.cc99 usage->owner = info.owner_ != nullptr ? in GetObjectMonitorUsage()
/art/compiler/debug/
Delf_debug_info_writer.h103 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/
Dmonitors_helper.cc69 obj, usage.owner, usage.entry_count, wait, notify_wait); in Java_art_Monitors_getObjectMonitorUsage()
/art/test/1922-owned-monitors-info/
Dexpected.txt1 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/
Djvmti.h610 jthread owner; member