Home
last modified time | relevance | path

Searched refs:VariableSizedHandleScope (Results 1 – 25 of 39) sorted by relevance

12

/art/runtime/
Dhandle_scope-inl.h185 inline VariableSizedHandleScope* BaseHandleScope::AsVariableSized() { in AsVariableSized()
187 return down_cast<VariableSizedHandleScope*>(this); in AsVariableSized()
195 inline const VariableSizedHandleScope* BaseHandleScope::AsVariableSized() const { in AsVariableSized()
197 return down_cast<const VariableSizedHandleScope*>(this); in AsVariableSized()
206 inline MutableHandle<T> VariableSizedHandleScope::NewHandle(T* object) { in NewHandle()
211 inline MutableHandle<MirrorType> VariableSizedHandleScope::NewHandle(ObjPtr<MirrorType> ptr) { in NewHandle()
219 inline VariableSizedHandleScope::VariableSizedHandleScope(Thread* const self) in VariableSizedHandleScope() function
231 inline VariableSizedHandleScope::~VariableSizedHandleScope() { in ~VariableSizedHandleScope()
245 inline uint32_t VariableSizedHandleScope::Size() const { in Size()
260 inline uint32_t VariableSizedHandleScope::Capacity() const { in Capacity()
[all …]
Dhandle_scope.h38 class VariableSizedHandleScope; variable
71 ALWAYS_INLINE VariableSizedHandleScope* AsVariableSized();
73 ALWAYS_INLINE const VariableSizedHandleScope* AsVariableSized() const;
202 friend class VariableSizedHandleScope; variable
229 class VariableSizedHandleScope : public BaseHandleScope {
231 explicit VariableSizedHandleScope(Thread* const self) REQUIRES_SHARED(Locks::mutator_lock_);
232 ~VariableSizedHandleScope() REQUIRES_SHARED(Locks::mutator_lock_);
278 DISALLOW_COPY_AND_ASSIGN(VariableSizedHandleScope);
Dvar_handles.cc59 VariableSizedHandleScope accessor_type_hs(self); in VarHandleInvokeAccessorWithConversions()
63 std::is_same_v<VariableSizedHandleScope*, CallSiteType>, in VarHandleInvokeAccessorWithConversions()
Dcommon_runtime_test.h73 class VariableSizedHandleScope; variable
83 VariableSizedHandleScope* handle_scope)
Dhandle_scope_test.cc99 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
Dclass_table_test.cc79 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
Druntime_image.cc430 ClassTableVisitor(Handle<mirror::ClassLoader> loader, VariableSizedHandleScope& handles) in ClassTableVisitor()
446 VariableSizedHandleScope& handles_;
593 VariableSizedHandleScope handles(self); in EmitClasses()
1069 VariableSizedHandleScope handles(soa.Self()); in WriteObjects()
1682 explicit CollectDexCacheVisitor(VariableSizedHandleScope& handles) : handles_(handles) {} in CollectDexCacheVisitor()
1692 VariableSizedHandleScope& handles_;
1699 VariableSizedHandleScope& handles) in FindDexCaches()
Dmonitor_test.cc273 VariableSizedHandleScope vhs(soa.Self()); in CommonWaitSetup()
Druntime_callbacks_test.cc301 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
Dcommon_runtime_test.cc360 VariableSizedHandleScope* handle_scope) { in FillHeap()
Dclass_loader_context.cc797 VariableSizedHandleScope& map_scope, in CreateClassLoaderInternal()
895 VariableSizedHandleScope map_scope(self); in CreateClassLoader()
/art/runtime/gc/
Dheap_verification_test.cc56 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
77 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
96 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
109 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
127 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
153 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
173 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
/art/compiler/optimizing/
Dsharpening.h56 VariableSizedHandleScope* handles);
Dinstruction_simplifier_test.cc106 std::pair<HLoadClass*, HLoadClass*> GetLoadClasses(VariableSizedHandleScope* vshs) { in GetLoadClasses()
148 VariableSizedHandleScope vshs(soa.Self()); in TEST_P()
229 VariableSizedHandleScope vshs(soa.Self()); in TEST_P()
Dreference_type_propagation_test.cc49 void SetupPropagation(VariableSizedHandleScope* handles) { in SetupPropagation()
177 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
186 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
218 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
266 VariableSizedHandleScope handles(soa.Self()); in RunVisitListTest()
368 VariableSizedHandleScope handles(soa.Self()); in RunVisitListTest()
Doptimizing_compiler.cc359 VariableSizedHandleScope* handles) const;
365 VariableSizedHandleScope* handles) const;
765 VariableSizedHandleScope* handles) const { in TryCompile()
966 VariableSizedHandleScope* handles) const { in TryCompileIntrinsic()
1085 VariableSizedHandleScope handles(soa.Self()); in Compile()
1198 VariableSizedHandleScope handles(soa.Self()); in JniCompile()
1373 VariableSizedHandleScope handles(self); in JitCompile()
Dload_store_elimination_test.cc1096 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1225 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1365 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1460 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1552 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1646 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1908 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1979 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2072 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2180 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
[all …]
Doptimizing_unit_test.h233 HGraph* CreateGraph(VariableSizedHandleScope* handles = nullptr) {
264 VariableSizedHandleScope handles(soa.Self());
293 void InitGraph(VariableSizedHandleScope* handles = nullptr) {
Dsharpening.cc385 VariableSizedHandleScope* handles) { in ProcessLoadString()
/art/runtime/mirror/
Dmethod_type.h28 class VariableSizedHandleScope; variable
37 explicit RawMethodType(VariableSizedHandleScope* hs);
50 VariableSizedHandleScope* hs_;
Dmethod_type-inl.h29 inline RawMethodType::RawMethodType(VariableSizedHandleScope* hs) in RawMethodType()
/art/runtime/native/
Ddalvik_system_VMDebug.cc267 VariableSizedHandleScope hs(soa.Self()); in VMDebug_countInstancesOfClass()
286 VariableSizedHandleScope hs(soa.Self()); in VMDebug_countInstancesOfClasses()
/art/runtime/verifier/
Dreg_type_cache.h208 VariableSizedHandleScope handles_;
/art/dex2oat/driver/
Dcompiler_driver.cc780 explicit CreateConflictTablesVisitor(VariableSizedHandleScope& hs) in CreateConflictTablesVisitor()
819 VariableSizedHandleScope& hs_;
918 VariableSizedHandleScope hs(soa.Self()); in PreCompile()
1062 VariableSizedHandleScope hs_;
1454 mutable VariableSizedHandleScope hs_;
/art/openjdkjvmti/
Dti_stack.cc578 art::VariableSizedHandleScope hs(current); in GetThreadListStackTraces()
893 art::VariableSizedHandleScope hs;

12