Home
last modified time | relevance | path

Searched refs:BaseHandleScope (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dhandle_scope.h45 class PACKED(4) BaseHandleScope {
67 BaseHandleScope* GetLink() const { in GetLink()
77 BaseHandleScope(BaseHandleScope* link, uint32_t capacity) in BaseHandleScope() function
82 explicit BaseHandleScope(BaseHandleScope* link) in BaseHandleScope() function
89 BaseHandleScope* const link_;
95 DISALLOW_COPY_AND_ASSIGN(BaseHandleScope);
101 class PACKED(4) HandleScope : public BaseHandleScope {
173 HandleScope(BaseHandleScope* link, uint32_t capacity) in HandleScope()
174 : BaseHandleScope(link, capacity) { in HandleScope()
194 explicit ALWAYS_INLINE FixedSizeHandleScope(BaseHandleScope* link)
[all …]
Dhandle_scope-inl.h34 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link) in FixedSizeHandleScope()
65 BaseHandleScope* top_handle_scope = self_->PopHandleScope(); in ~StackHandleScope()
148 inline uint32_t BaseHandleScope::Size() const { in Size()
155 inline uint32_t BaseHandleScope::Capacity() const { in Capacity()
161 inline bool BaseHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) const { in Contains()
168 inline void BaseHandleScope::VisitRoots(Visitor& visitor) { in VisitRoots()
177 inline void BaseHandleScope::VisitHandles(Visitor& visitor) { in VisitHandles()
185 inline VariableSizedHandleScope* BaseHandleScope::AsVariableSized() { in AsVariableSized()
190 inline HandleScope* BaseHandleScope::AsHandleScope() { in AsHandleScope()
195 inline const VariableSizedHandleScope* BaseHandleScope::AsVariableSized() const { in AsVariableSized()
[all …]
Dhandle_scope_test.cc65 BaseHandleScope** link_ptr = reinterpret_cast<BaseHandleScope**>(table_base_ptr + in TEST_F()
111 BaseHandleScope* base = &hs; in TEST_F()
123 BaseHandleScope* base = &hs; in TEST_F()
Dthread.h1179 BaseHandleScope* GetTopHandleScope() REQUIRES_SHARED(Locks::mutator_lock_) { in GetTopHandleScope()
1183 void PushHandleScope(BaseHandleScope* handle_scope) REQUIRES_SHARED(Locks::mutator_lock_) { in PushHandleScope()
1188 BaseHandleScope* PopHandleScope() REQUIRES_SHARED(Locks::mutator_lock_) { in PopHandleScope()
1189 BaseHandleScope* handle_scope = tlsPtr_.top_handle_scope; in PopHandleScope()
2219 BaseHandleScope* top_handle_scope;
Dthread.cc2819 for (BaseHandleScope* cur = tlsPtr_.top_handle_scope; cur; cur = cur->GetLink()) { in HandleScopeVisitRoots()
/art/compiler/jni/
Djni_compiler_test.cc588 BaseHandleScope* const handle_scope_;