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

  /art/runtime/
oat_file.h 189 // A representation of an invalid OatMethod, used when an OatMethod or OatClass can't be found.
207 friend class OatClass;
210 class OatClass final {
236 // A representation of an invalid OatClass, used when an OatClass can't be found.
238 static OatClass Invalid() {
239 return OatClass(/* oat_file= */ nullptr,
248 OatClass(const OatFile* oat_file,
360 // Finds the associated oat class for a dex_file and descriptor. Returns an invalid OatClass on
362 static OatClass FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found)
    [all...]
oat_file.cc     [all...]
art_method.cc 464 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file,
512 OatFile::OatClass oat_class = OatFile::FindOatClass(declaring_class->GetDexFile(),
    [all...]
class_linker.cc     [all...]
  /art/test/661-oat-writer-layout/
oat_writer_layout.cc 58 OatFile::OatClass oat_class = OatFile::FindOatClass(*klass_ptr->GetDexCache()->GetDexFile(),
  /art/dex2oat/linker/
oat_writer.h 80 // ClassOffsets[0] one table of OatClass offsets for each class def for each OatDexFile.
85 // OatClass[0] one variable sized OatClass for each of C DexFile::ClassDefs
86 // OatClass[1] contains OatClass entries with class status, offsets to code, etc.
88 // OatClass[C]
193 // Write the rest of .rodata section (ClassOffsets[], OatClass[], maps).
263 class OatClass;
473 dchecked_vector<OatClass> oat_classes_;
oat_writer.cc 233 // Offset of start of OatClass from beginning of OatHeader. It is
240 class OatWriter::OatClass {
242 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods,
245 OatClass(OatClass&& src) = default;
256 // Offset from OatClass::offset_ to the OatMethodOffsets for the
258 // CompiledMethod entry in OatClass::compiled_methods_ should be
259 // null and that the OatClass::type_ should be kOatClassBitmap.
273 // present in the OatClass. Note that some may be missing if
274 // OatClass::compiled_methods_ contains null values (an
    [all...]
oat_writer_test.cc 442 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(accessor.GetClassDefIndex());
    [all...]
  /art/oatdump/
oatdump.cc 254 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
270 void WalkOatClass(const OatFile::OatClass& oat_class,
718 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
851 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(accessor.GetClassDefIndex());
    [all...]
  /art/dex2oat/
dex2oat_test.cc 540 OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
    [all...]

Completed in 518 milliseconds