Home | History | Annotate | Download | only in mirror

Lines Matching refs:DexCache

38 // C++ mirror of java.lang.DexCache.
39 class MANAGED DexCache FINAL : public Object {
41 // Size of java.lang.DexCache.class.
44 // Size of an instance of java.lang.DexCache not including referenced values.
46 return sizeof(DexCache);
73 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_));
77 return OFFSET_OF_OBJECT_MEMBER(DexCache, dex_);
81 return OFFSET_OF_OBJECT_MEMBER(DexCache, strings_);
85 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_types_);
89 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_fields_);
93 return OFFSET_OF_OBJECT_MEMBER(DexCache, resolved_methods_);
97 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_strings_);
101 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_types_);
105 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_fields_);
109 return OFFSET_OF_OBJECT_MEMBER(DexCache, num_resolved_methods_);
191 return GetFieldPtr<const DexFile*>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_));
195 SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_), dex_file);
233 DISALLOW_IMPLICIT_CONSTRUCTORS(DexCache);