HomeSort by relevance Sort by last modified time
    Searched refs:GcRoot (Results 1 - 25 of 35) sorted by null

1 2

  /art/runtime/mirror/
reference.cc 22 GcRoot<Class> Reference::java_lang_ref_Reference_;
27 java_lang_ref_Reference_ = GcRoot<Class>(java_lang_ref_Reference);
32 java_lang_ref_Reference_ = GcRoot<Class>(nullptr);
art_field.cc 32 GcRoot<Class> ArtField::java_lang_reflect_ArtField_;
37 java_lang_reflect_ArtField_ = GcRoot<Class>(java_lang_reflect_ArtField);
42 java_lang_reflect_ArtField_ = GcRoot<Class>(nullptr);
stack_trace_element.cc 29 GcRoot<Class> StackTraceElement::java_lang_StackTraceElement_;
34 java_lang_StackTraceElement_ = GcRoot<Class>(java_lang_StackTraceElement);
39 java_lang_StackTraceElement_ = GcRoot<Class>(nullptr);
array.h 164 array_class_ = GcRoot<Class>(array_class);
174 array_class_ = GcRoot<Class>(nullptr);
181 static GcRoot<Class> array_class_;
throwable.cc 33 GcRoot<Class> Throwable::java_lang_Throwable_;
132 java_lang_Throwable_ = GcRoot<Class>(java_lang_Throwable);
137 java_lang_Throwable_ = GcRoot<Class>(nullptr);
stack_trace_element.h 76 static GcRoot<Class> java_lang_StackTraceElement_;
throwable.h 74 static GcRoot<Class> java_lang_Throwable_;
string.cc 34 GcRoot<Class> String::java_lang_String_;
57 java_lang_String_ = GcRoot<Class>(java_lang_String);
62 java_lang_String_ = GcRoot<Class>(nullptr);
reference.h 117 static GcRoot<Class> java_lang_ref_Reference_;
art_method.cc 50 GcRoot<Class> ArtMethod::java_lang_reflect_ArtMethod_;
82 java_lang_reflect_ArtMethod_ = GcRoot<Class>(java_lang_reflect_ArtMethod);
87 java_lang_reflect_ArtMethod_ = GcRoot<Class>(nullptr);
array.cc 127 template <typename T> GcRoot<Class> PrimitiveArray<T>::array_class_;
string.h 162 static GcRoot<Class> java_lang_String_;
art_field.h 183 static GcRoot<Class> java_lang_reflect_ArtField_;
  /art/runtime/
gc_root-inl.h 28 inline MirrorType* GcRoot<MirrorType>::Read() const {
reference_table.h 55 typedef std::vector<GcRoot<mirror::Object>,
56 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table;
gc_root.h 74 class PACKED(4) GcRoot {
101 ALWAYS_INLINE explicit GcRoot<MirrorType>() : root_(nullptr) {
104 ALWAYS_INLINE explicit GcRoot<MirrorType>(MirrorType* ref)
intern_table.h 102 std::size_t operator()(const GcRoot<mirror::String>& root) const NO_THREAD_SAFETY_ANALYSIS;
103 bool operator()(const GcRoot<mirror::String>& a, const GcRoot<mirror::String>& b) const
108 void MakeEmpty(GcRoot<mirror::String>& item) const {
109 item = GcRoot<mirror::String>();
111 bool IsEmpty(const GcRoot<mirror::String>& item) const {
137 typedef HashSet<GcRoot<mirror::String>, GcRootEmptyFn, StringHashEquals, StringHashEquals,
138 TrackingAllocator<GcRoot<mirror::String>, kAllocatorTagInternTable>> UnorderedSet;
203 std::vector<GcRoot<mirror::String>> new_strong_intern_roots_
runtime.h 310 resolution_method_ = GcRoot<mirror::ArtMethod>(method);
324 imt_conflict_method_ = GcRoot<mirror::ArtMethod>(method);
327 imt_unimplemented_method_ = GcRoot<mirror::ArtMethod>(method);
341 default_imt_ = GcRoot<mirror::ObjectArray<mirror::ArtMethod>>(imt);
521 GcRoot<mirror::ArtMethod> callee_save_methods_[kLastCalleeSaveType];
522 GcRoot<mirror::Throwable> pre_allocated_OutOfMemoryError_;
523 GcRoot<mirror::Throwable> pre_allocated_NoClassDefFoundError_;
524 GcRoot<mirror::ArtMethod> resolution_method_;
525 GcRoot<mirror::ArtMethod> imt_conflict_method_;
528 GcRoot<mirror::ArtMethod> imt_unimplemented_method_
    [all...]
intern_table.cc 105 new_strong_intern_roots_.push_back(GcRoot<mirror::String>(s));
279 std::size_t InternTable::StringHashEquals::operator()(const GcRoot<mirror::String>& root) const {
286 bool InternTable::StringHashEquals::operator()(const GcRoot<mirror::String>& a,
287 const GcRoot<mirror::String>& b) const {
295 auto it = post_zygote_table_.Find(GcRoot<mirror::String>(s));
299 it = pre_zygote_table_.Find(GcRoot<mirror::String>(s));
307 auto it = pre_zygote_table_.Find(GcRoot<mirror::String>(s));
311 it = post_zygote_table_.Find(GcRoot<mirror::String>(s));
327 post_zygote_table_.Insert(GcRoot<mirror::String>(s));
352 *it = GcRoot<mirror::String>(new_object->AsString())
    [all...]
reference_table.cc 48 entries_.push_back(GcRoot<mirror::Object>(obj));
72 bool operator()(GcRoot<mirror::Object> root1, GcRoot<mirror::Object> root2)
203 sorted_entries.push_back(GcRoot<mirror::Object>(entry));
246 for (GcRoot<mirror::Object>& root : entries_) {
indirect_reference_table.cc 188 *table_[idx].GetReference() = GcRoot<mirror::Object>(nullptr);
225 *table_[idx].GetReference() = GcRoot<mirror::Object>(nullptr);
260 entries.push_back(GcRoot<mirror::Object>(obj));
263 entries.push_back(GcRoot<mirror::Object>(obj));
class_linker.h     [all...]
indirect_reference_table.h 210 references_[serial_] = GcRoot<mirror::Object>(obj);
212 GcRoot<mirror::Object>* GetReference() {
222 GcRoot<mirror::Object> references_[kIRTPrevCount];
monitor.cc 89 obj_(GcRoot<mirror::Object>(obj)),
112 obj_(GcRoot<mirror::Object>(obj)),
230 obj_ = GcRoot<mirror::Object>(object);
648 monitor->obj_ = GcRoot<mirror::Object>(nullptr);
    [all...]
monitor.h 211 GcRoot<mirror::Object> obj_;

Completed in 280 milliseconds

1 2