HomeSort by relevance Sort by last modified time
    Searched refs:BaseHandleScope (Results 1 - 6 of 6) sorted by null

  /art/runtime/
handle_scope.h 42 class PACKED(4) BaseHandleScope {
56 // Link to previous BaseHandleScope or null.
57 BaseHandleScope* GetLink() const {
67 BaseHandleScope(BaseHandleScope* link, uint32_t num_references)
72 explicit BaseHandleScope(BaseHandleScope* link)
79 BaseHandleScope* const link_;
85 DISALLOW_COPY_AND_ASSIGN(BaseHandleScope);
91 class PACKED(4) HandleScope : public BaseHandleScope {
    [all...]
handle_scope-inl.h 31 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link,
54 BaseHandleScope* top_handle_scope = self_->PopHandleScope();
145 inline uint32_t BaseHandleScope::NumberOfReferences() const {
151 inline bool BaseHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) const {
158 inline void BaseHandleScope::VisitRoots(Visitor& visitor) {
166 inline VariableSizedHandleScope* BaseHandleScope::AsVariableSized() {
171 inline HandleScope* BaseHandleScope::AsHandleScope() {
176 inline const VariableSizedHandleScope* BaseHandleScope::AsVariableSized() const {
181 inline const HandleScope* BaseHandleScope::AsHandleScope() const {
200 : BaseHandleScope(self->GetTopHandleScope())
    [all...]
handle_scope_test.cc 59 BaseHandleScope** link_ptr = reinterpret_cast<BaseHandleScope**>(table_base_ptr +
104 BaseHandleScope* base = &hs;
113 BaseHandleScope* base = &hs;
thread.h 836 BaseHandleScope* GetTopHandleScope() {
840 void PushHandleScope(BaseHandleScope* handle_scope) {
845 BaseHandleScope* PopHandleScope() {
846 BaseHandleScope* handle_scope = tlsPtr_.top_handle_scope;
    [all...]
thread.cc     [all...]
  /art/compiler/jni/
jni_compiler_test.cc 539 BaseHandleScope* const handle_scope_;
550 for (BaseHandleScope* cur = self->GetTopHandleScope(); cur != nullptr; cur = cur->GetLink()) {
    [all...]

Completed in 91 milliseconds