Home | History | Annotate | Download | only in runtime

Lines Matching defs:access_flags_

71   ArtMethod() : access_flags_(0), dex_code_item_offset_(0), dex_method_index_(0),
110 return access_flags_.load(std::memory_order_relaxed);
117 access_flags_.store(new_access_flags, std::memory_order_relaxed);
125 old_access_flags = access_flags_.load(std::memory_order_relaxed);
127 } while (!access_flags_.compare_exchange_weak(old_access_flags, new_access_flags));
135 old_access_flags = access_flags_.load(std::memory_order_relaxed);
137 } while (!access_flags_.compare_exchange_weak(old_access_flags, new_access_flags));
694 visitor(this, &access_flags_, "access_flags_");
717 std::atomic<std::uint32_t> access_flags_;