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 {
149 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
164 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
170 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
186 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
192 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
315 OatClass* oat_class = new OatClass(offset_, compiled_methods_,
335 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
493 OatClass* oat_clas
1148 OatWriter::OatClass::OatClass(size_t offset, function in class:OatWriter::OatClass
[all...]
/art/runtime/
H A Doat_file.h173 friend class OatClass;
176 class OatClass { class in class:art::OatFile
202 OatClass() {} function in class:art::OatFile::OatClass
205 OatClass(const OatFile* oat_file,
252 // Returns the OatClass for the class specified by the given DexFile class_def_index.
253 OatClass GetOatClass(uint16_t class_def_index) const;
255 // Returns the offset to the OatClass information. Most callers should use GetOatClass.
371 friend class OatClass;
H A Doat_file.cc461 OatFile::OatClass OatFile::OatDexFile::GetOatClass(uint16_t class_def_index) const {
494 return OatClass(oat_file_,
502 OatFile::OatClass::OatClass(const OatFile* oat_file, function in class:art::OatFile::OatClass
535 uint32_t OatFile::OatClass::GetOatMethodOffsetsOffset(uint32_t method_index) const {
543 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const {
565 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {

Completed in 194 milliseconds