Searched refs:owner_ (Results 1 – 7 of 7) sorted by relevance
/art/openjdkjvmti/ |
D | ti_monitor.cc | 60 JvmtiMonitor() : owner_(nullptr), count_(0) { } in JvmtiMonitor() 64 art::Thread* owner_thread = monitor->owner_.load(std::memory_order_relaxed); in Destroy() 71 monitor->owner_.store(nullptr, std::memory_order_relaxed); in Destroy() 118 DCHECK(owner_.load(std::memory_order_relaxed) == nullptr); in MonitorEnter() 119 owner_.store(self, std::memory_order_relaxed); in MonitorEnter() 131 owner_.store(nullptr, std::memory_order_relaxed); in MonitorExit() 165 art::Thread* owner_thread = owner_.load(std::memory_order_relaxed); in IsOwner() 179 owner_.store(nullptr, std::memory_order_relaxed); in Wait() 188 CHECK(owner_.load(std::memory_order_relaxed) == nullptr); in Wait() 195 CHECK(owner_.load(std::memory_order_relaxed) == self); in Wait() [all …]
|
D | ti_object.cc | 99 usage->owner = info.owner_ != nullptr ? in GetObjectMonitorUsage() 100 jni->AddLocalReference<jthread>(info.owner_->GetPeerFromOtherThread()) : nullptr; in GetObjectMonitorUsage() 112 if (thd != info.owner_ && target.Ptr() == thd->GetMonitorEnterObject()) { in GetObjectMonitorUsage()
|
/art/runtime/ |
D | monitor.cc | 96 owner_(owner), in Monitor() 123 owner_(owner), in Monitor() 155 CHECK(owner_ == nullptr || owner_ == self || owner_->IsSuspended()); in Install() 160 CHECK_EQ(owner_->GetThreadId(), lw.ThinLockOwner()); in Install() 185 if (success && owner_ != nullptr && lock_profiling_threshold_ != 0) { in Install() 188 locking_method_ = owner_->GetCurrentMethod(&locking_dex_pc_, false); in Install() 219 NextMethodVisitor nmv(owner_); in Install() 252 DCHECK(owner_ == Thread::Current()); in RemoveFromWaitSet() 375 if (owner_ == nullptr) { // Unowned. in TryLockLocked() 376 owner_ = self; in TryLockLocked() [all …]
|
D | monitor.h | 133 return owner_; in GetOwner() 306 Thread* volatile owner_ GUARDED_BY(monitor_lock_); 383 MonitorInfo() : owner_(nullptr), entry_count_(0) {} in MonitorInfo() 388 Thread* owner_; variable
|
D | debugger.cc | 867 if (monitor_info.owner_ != nullptr) { in GetMonitorInfo() 868 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread())); in GetMonitorInfo()
|
/art/compiler/debug/ |
D | elf_debug_info_writer.h | 104 : owner_(owner), in ElfCompilationUnitWriter() 105 info_(Is64BitInstructionSet(owner_->builder_->GetIsa()), &owner->debug_abbrev_) { in ElfCompilationUnitWriter() 111 ? owner_->builder_->GetText()->GetAddress() in Write() 113 const bool is64bit = Is64BitInstructionSet(owner_->builder_->GetIsa()); in Write() 125 dwarf::Writer<> debug_ranges(&owner_->debug_ranges_); in Write() 126 info_.WriteSecOffset(DW_AT_ranges, owner_->debug_ranges_.size()); in Write() 173 bool unique = owner_->defined_dex_classes_.insert(dex_class_desc).second; in Write() 283 owner_->builder_->GetDebugInfo()->WriteFully(buffer.data(), buffer.size()); in Write() 447 owner_->builder_->GetDebugInfo()->WriteFully(buffer.data(), buffer.size()); in Write() 467 owner_->builder_->GetIsa(), [all …]
|
/art/libelffile/elf/ |
D | elf_builder.h | 99 owner_(owner), in Section() 118 AllocateVirtualMemory(owner_->virtual_address_, size); in AllocateVirtualMemory() 128 CHECK_LE(owner_->virtual_address_, header_.sh_addr); in AllocateVirtualMemory() 129 owner_->virtual_address_ = header_.sh_addr + header_.sh_size; in AllocateVirtualMemory() 134 CHECK(owner_->current_section_ == nullptr); in Start() 137 header_.sh_offset = owner_->AlignFileOffset(align); in Start() 138 owner_->current_section_ = this; in Start() 143 CHECK(owner_->current_section_ == this); in End() 147 owner_->current_section_ = nullptr; in End() 153 CHECK(owner_->current_section_ == this); in GetPosition() [all …]
|