Home
last modified time | relevance | path

Searched refs:BaseReflectiveHandleScope (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dreflective_handle_scope.h41 class BaseReflectiveHandleScope; variable
51 class BaseReflectiveHandleScope {
59 ALWAYS_INLINE virtual ~BaseReflectiveHandleScope() { in ~BaseReflectiveHandleScope()
66 BaseReflectiveHandleScope* GetLink() { in GetLink()
77 ALWAYS_INLINE BaseReflectiveHandleScope() : self_(nullptr), link_(nullptr) {} in BaseReflectiveHandleScope() function
85 BaseReflectiveHandleScope* link_;
88 DISALLOW_COPY_AND_ASSIGN(BaseReflectiveHandleScope);
90 std::ostream& operator<<(std::ostream& os, const BaseReflectiveHandleScope& brhs);
93 class StackReflectiveHandleScope : public BaseReflectiveHandleScope {
Dreflective_handle_scope.cc26 void BaseReflectiveHandleScope::Describe(std::ostream& os) const { in Describe()
30 std::ostream& operator<<(std::ostream& os, const BaseReflectiveHandleScope& brhs) { in operator <<()
Dreflective_handle_scope-inl.h56 void BaseReflectiveHandleScope::PushScope(Thread* self) { in PushScope()
63 void BaseReflectiveHandleScope::PopScope() { in PopScope()
Dreflective_value_visitor.h42 class BaseReflectiveHandleScope; variable
128 explicit ReflectiveHandleScopeSourceInfo(BaseReflectiveHandleScope* source) in ReflectiveHandleScopeSourceInfo()
134 BaseReflectiveHandleScope* source_;
Dreflective_handle.h73 friend class BaseReflectiveHandleScope;
102 friend class BaseReflectiveHandleScope;
Dthread.h920 BaseReflectiveHandleScope* GetTopReflectiveHandleScope() { in GetTopReflectiveHandleScope()
924 void PushReflectiveHandleScope(BaseReflectiveHandleScope* scope) { in PushReflectiveHandleScope()
930 BaseReflectiveHandleScope* PopReflectiveHandleScope() { in PopReflectiveHandleScope()
931 BaseReflectiveHandleScope* handle_scope = tlsPtr_.top_reflective_handle_scope; in PopReflectiveHandleScope()
1835 BaseReflectiveHandleScope* top_reflective_handle_scope; in PACKED()
Dthread.cc3985 for (BaseReflectiveHandleScope* brhs = GetTopReflectiveHandleScope(); in VisitReflectiveTargets()
/art/runtime/jni/
Djni_id_manager.cc564 class JniIdDeferStackReflectiveScope : public BaseReflectiveHandleScope {
567 : BaseReflectiveHandleScope(), methods_(), fields_() { in REQUIRES_SHARED()