/art/runtime/ |
D | object_lock.cc | 26 ObjectLock<T>::ObjectLock(Thread* self, Handle<T> object) : self_(self), obj_(object) { in ObjectLock() 28 obj_->MonitorEnter(self_); in ObjectLock() 33 obj_->MonitorExit(self_); in ~ObjectLock() 38 Monitor::Wait(self_, obj_.Get(), 0, 0, false, ThreadState::kWaiting); in WaitIgnoringInterrupts() 43 obj_->Notify(self_); in Notify() 48 obj_->NotifyAll(self_); in NotifyAll() 52 ObjectTryLock<T>::ObjectTryLock(Thread* self, Handle<T> object) : self_(self), obj_(object) { in ObjectTryLock() 54 acquired_ = obj_->MonitorTryEnter(self_) != nullptr; in ObjectTryLock() 60 obj_->MonitorExit(self_); in ~ObjectTryLock()
|
D | handle_wrapper.h | 31 : MutableHandle<T>(handle), obj_(obj) { in HandleWrapper() 37 *obj_ = MutableHandle<T>::Get(); in ~HandleWrapper() 41 T** const obj_; 51 : MutableHandle<T>(handle), obj_(obj) {} in HandleWrapperObjPtr() 56 *obj_ = MutableHandle<T>::Get(); in ~HandleWrapperObjPtr() 60 ObjPtr<T>* const obj_;
|
D | object_lock.h | 43 Handle<T> const obj_; variable 61 Handle<T> const obj_; variable
|
D | reflective_handle.h | 109 : MutableReflectiveHandle<T>(handle), obj_(obj) { in ReflectiveHandleWrapper() 115 *obj_ = MutableReflectiveHandle<T>::Get(); in ~ReflectiveHandleWrapper() 119 T** const obj_;
|
D | monitor_test.cc | 340 explicit TryLockTask(jobject obj) : obj_(obj) {} in TryLockTask() 345 Handle<mirror::Object> obj = hs.NewHandle(soa.Decode<mirror::Object>(obj_)); in Run() 356 jobject obj_; member in art::TryLockTask
|
D | monitor-inl.h | 29 return obj_.Read<kReadBarrierOption>(); in GetObject()
|
D | monitor.cc | 102 obj_(GcRoot<mirror::Object>(obj)), in Monitor() 136 obj_(GcRoot<mirror::Object>(obj)), in Monitor() 329 obj_ = GcRoot<mirror::Object>(object); in SetObject() 1031 monitor->obj_ = GcRoot<mirror::Object>(nullptr); in Deflate()
|
D | monitor.h | 340 GcRoot<mirror::Object> obj_; variable
|
D | thread.cc | 2699 obj_(obj), in JniTransitionReferenceVisitor() 2712 if (current_vreg == obj_) { in VisitFrame() 2727 if (current_vreg == obj_) { in VisitFrame() 2738 return obj_ >= current_vreg; in VisitFrame() 2740 if (m->IsStatic() && obj_ == m->GetDeclaringClassAddressWithoutBarrier()) { in VisitFrame() 2753 void* obj_; member in art::JniTransitionReferenceVisitor
|
/art/test/904-object-allocation/ |
D | tracking.cc | 52 ScopedGlobalRef(JNIEnv* env, T obj) : obj_(env->NewGlobalRef(obj)) {} in ScopedGlobalRef() 54 : obj_(GetEnv()->NewGlobalRef(src.obj_)) {} in ScopedGlobalRef() 55 ScopedGlobalRef(ScopedGlobalRef<T>&& src) noexcept : obj_(src.obj_) { in ScopedGlobalRef() 56 src.obj_ = nullptr; in ScopedGlobalRef() 60 GetEnv()->DeleteGlobalRef(obj_); in ~ScopedGlobalRef() 64 return reinterpret_cast<T>(env->NewLocalRef(obj_)); in Get() 74 jobject obj_; member in art::Test904ObjectAllocation::ScopedGlobalRef
|
/art/dex2oat/ |
D | dex2oat.cc | 3080 explicit ScopedGlobalRef(jobject obj) : obj_(obj) {} in ScopedGlobalRef() 3082 if (obj_ != nullptr) { in ~ScopedGlobalRef() 3084 soa.Env()->GetVm()->DeleteGlobalRef(soa.Self(), obj_); in ~ScopedGlobalRef() 3089 jobject obj_; member in art::ScopedGlobalRef
|
/art/runtime/gc/collector/ |
D | mark_compact.cc | 1380 : collector_(collector), obj_(obj), begin_(begin), end_(end) { in RefsUpdateVisitor() 1390 uint8_t* ref = reinterpret_cast<uint8_t*>(obj_) + offset.Int32Value(); in operator ()() 1394 collector_->UpdateRef(obj_, offset); in operator ()() 1408 collector_->UpdateRef(obj_, offset); in operator ()() 1427 mirror::Object* const obj_; member in art::gc::collector::MarkCompact::RefsUpdateVisitor
|
/art/runtime/gc/ |
D | heap.cc | 2959 explicit RootMatchesObjectVisitor(const mirror::Object* obj) : obj_(obj) { } in RootMatchesObjectVisitor() 2963 if (root == obj_) { in VisitRoot() 2964 LOG(INFO) << "Object " << obj_ << " is a root " << info.ToString(); in VisitRoot() 2969 const mirror::Object* const obj_; member in art::gc::RootMatchesObjectVisitor
|
/art/compiler/optimizing/ |
D | code_generator_x86_64.cc | 599 obj_(obj), in ReadBarrierMarkAndUpdateFieldSlowPathX86_64() 681 CpuRegister base = obj_; in EmitNativeCode() 736 const CpuRegister obj_; member in art::x86_64::ReadBarrierMarkAndUpdateFieldSlowPathX86_64 761 obj_(obj), in ReadBarrierForHeapReferenceSlowPathX86_64() 875 parallel_move.AddMove(obj_, in EmitNativeCode() 908 size_t obj = static_cast<int>(obj_.AsRegister<CpuRegister>().AsRegister()); in FindAvailableCallerSaveRegister() 925 const Location obj_; member in art::x86_64::ReadBarrierForHeapReferenceSlowPathX86_64
|
D | code_generator_x86.cc | 589 obj_(obj), in ReadBarrierMarkAndUpdateFieldSlowPathX86() 666 Register base = obj_; in EmitNativeCode() 720 const Register obj_; member in art::x86::ReadBarrierMarkAndUpdateFieldSlowPathX86 744 obj_(obj), in ReadBarrierForHeapReferenceSlowPathX86() 861 parallel_move.AddMove(obj_, in EmitNativeCode() 889 size_t obj = static_cast<int>(obj_.AsRegister<Register>()); in FindAvailableCallerSaveRegister() 906 const Location obj_; member in art::x86::ReadBarrierForHeapReferenceSlowPathX86
|
D | code_generator_arm64.cc | 582 obj_(obj), in ReadBarrierForHeapReferenceSlowPathARM64() 700 parallel_move.AddMove(obj_, in EmitNativeCode() 732 size_t obj = static_cast<int>(XRegisterFrom(obj_).GetCode()); in FindAvailableCallerSaveRegister() 749 const Location obj_; member in art::arm64::ReadBarrierForHeapReferenceSlowPathARM64
|
D | code_generator_arm_vixl.cc | 743 obj_(obj), in ReadBarrierForHeapReferenceSlowPathARMVIXL() 862 parallel_move.AddMove(obj_, in EmitNativeCode() 892 uint32_t obj = RegisterFrom(obj_).GetCode(); in FindAvailableCallerSaveRegister() 909 const Location obj_; member in art::arm::ReadBarrierForHeapReferenceSlowPathARMVIXL
|