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

  /art/test/117-nopatchoat/
nopatchoat.cc 27 static const OatFile::OatDexFile* getOatDexFile(jclass cls) {
32 const OatFile::OatDexFile* oat_dex_file =
39 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls);
45 const OatFile::OatDexFile* oat_dex_file = getOatDexFile(cls);
  /art/runtime/
oat_file.h 90 class OatDexFile;
219 friend class OatDexFile;
222 class OatDexFile {
224 // Opens the DexFile referred to by this OatDexFile from within the containing OatFile.
231 // Returns the size of the DexFile refered to by this OatDexFile.
234 // Returns original path of DexFile that was the source of this OatDexFile.
239 // Returns the canonical location of DexFile that was the source of this OatDexFile.
244 // Returns checksum of original DexFile that was the source of this OatDexFile;
255 ~OatDexFile();
258 OatDexFile(const OatFile* oat_file
    [all...]
oat_file.cc 258 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd with empty location name",
264 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd truncated after dex file "
272 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd with truncated dex file "
282 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' truncated after "
290 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with zero dex "
295 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with dex file "
302 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' truncated "
310 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with invalid "
316 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with invalid "
326 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with truncated
    [all...]
class_linker.h 581 const OatFile::OatDexFile* FindOpenedOatDexFileForDexFile(const DexFile& dex_file)
587 const OatFile::OatDexFile* FindOpenedOatDexFile(const char* oat_location,
    [all...]
class_linker.cc 696 const OatFile::OatDexFile* ClassLinker::FindOpenedOatDexFileForDexFile(const DexFile& dex_file) {
702 const OatFile::OatDexFile* ClassLinker::FindOpenedOatDexFile(const char* oat_location,
715 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
    [all...]
runtime.cc 628 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
    [all...]
  /art/test/116-nodex2oat/
nodex2oat.cc 31 const OatFile::OatDexFile* oat_dex_file =
  /art/test/118-noimage-dex2oat/
noimage-dex2oat.cc 31 const OatFile::OatDexFile* oat_dex_file =
  /art/compiler/
oat_writer.h 37 // OatDexFile[0] one variable sized OatDexFile with offsets to Dex and OatClasses
38 // OatDexFile[1]
40 // OatDexFile[D]
42 // Dex[0] one variable sized DexFile for each OatDexFile.
159 class OatDexFile {
161 explicit OatDexFile(size_t offset, const DexFile& dex_file);
166 // Offset of start of OatDexFile from beginning of OatHeader. It is
178 DISALLOW_COPY_AND_ASSIGN(OatDexFile);
262 std::vector<OatDexFile*> oat_dex_files_
    [all...]
oat_writer.cc 758 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
773 // set offset in OatDexFile to DexFile
791 for (OatDexFile* oat_dex_file : oat_dex_files_) {
    [all...]
oat_test.cc 150 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation().c_str(),
  /art/oatdump/
oatdump.cc 250 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
279 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
308 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
361 bool DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
363 os << "OatDexFile:\n";
    [all...]
  /art/runtime/native/
dalvik_system_DexFile.cc 314 const art::OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(filename, nullptr,
  /art/runtime/gc/space/
image_space.cc     [all...]

Completed in 350 milliseconds