HomeSort by relevance Sort by last modified time
    Searched refs:OatClass (Results 1 - 8 of 8) sorted by null

  /art/runtime/
oat_file.h 170 friend class OatClass;
173 class OatClass {
199 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;
oat_file.cc 468 OatFile::OatClass OatFile::OatDexFile::GetOatClass(uint16_t class_def_index) const {
501 return OatClass(oat_file_,
509 OatFile::OatClass::OatClass(const OatFile* oat_file,
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 {
class_linker.h 486 const OatFile::OatClass* oat_class)
502 bool FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, OatFile::OatClass* oat_class)
559 void LinkCode(Handle<mirror::ArtMethod> method, const OatFile::OatClass* oat_class,
    [all...]
class_linker.cc     [all...]
  /art/compiler/
oat_writer.h 47 // 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 {
183 explicit OatClass(size_t offset,
187 ~OatClass();
199 // Offset of start of OatClass from beginning of OatHeader. It is
209 // Offset from OatClass::offset_ to the OatMethodOffsets for th
    [all...]
oat_writer.cc 145 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_class = writer_->oat_classes_[oat_class_index_]
    [all...]
oat_test.cc 167 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
  /art/oatdump/
oatdump.cc 292 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
322 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
382 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
408 bool DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file,
449 const OatFile::OatClass& oat_class, const DexFile& dex_file,
    [all...]

Completed in 234 milliseconds