Searched defs:OatClass (Results 1 - 4 of 4) sorted by relevance

/art/compiler/
H A Doat_writer.h47 // OatClass[0] one variable sized OatClass for each of C DexFile::ClassDefs
48 // OatClass[1] contains OatClass entries with class status, offsets to code, etc.
50 // OatClass[C]
181 class OatClass { class in class:art::OatWriter
183 explicit OatClass(size_t offset,
187 ~OatClass();
199 // Offset of start of OatClass from beginning of OatHeader. It is
209 // Offset from OatClass
[all...]
H A Doat_writer.cc145 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
151 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
167 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
173 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
189 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
195 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
318 OatClass* oat_class = new OatClass(offset_, compiled_methods_,
338 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
501 OatClass* oat_clas
1157 OatWriter::OatClass::OatClass(size_t offset, function in class:OatWriter::OatClass
[all...]
/art/runtime/
H A Doat_file.h170 friend class OatClass;
173 class OatClass { class in class:art::OatFile
199 OatClass() {} function in class:art::OatFile::OatClass
202 OatClass(const OatFile* oat_file,
249 // Returns the OatClass for the class specified by the given DexFile class_def_index.
250 OatClass GetOatClass(uint16_t class_def_index) const;
252 // Returns the offset to the OatClass information. Most callers should use GetOatClass.
371 friend class OatClass;
H A Doat_file.cc468 OatFile::OatClass OatFile::OatDexFile::GetOatClass(uint16_t class_def_index) const {
501 return OatClass(oat_file_,
509 OatFile::OatClass::OatClass(const OatFile* oat_file, function in class:art::OatFile::OatClass
542 uint32_t OatFile::OatClass::GetOatMethodOffsetsOffset(uint32_t method_index) const {
550 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const {
572 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {

Completed in 175 milliseconds