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

/art/compiler/
H A Doat_writer.h37 // 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 { class in class:art::OatWriter
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...]
H A Doat_writer.cc749 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
764 // set offset in OatDexFile to DexFile
782 for (OatDexFile* oat_dex_file : oat_dex_files_) {
1087 OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) { function in class:OatWriter::OatDexFile
1097 size_t OatWriter::OatDexFile::SizeOf() const {
1105 void OatWriter::OatDexFile::UpdateChecksum(OatHeader* oat_header) const {
1114 bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
/art/runtime/
H A Doat_file.cc251 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd with empty location name",
257 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd truncated after dex file "
265 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd with truncated dex file "
275 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' truncated after "
283 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with zero dex "
288 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with dex file "
295 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' truncated "
303 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with invalid "
309 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #%zd for '%s' with invalid "
319 *error_msg = StringPrintf("In oat file '%s' found OatDexFile #
433 OatFile::OatDexFile::OatDexFile(const OatFile* oat_file, function in class:art::OatFile::OatDexFile
[all...]
H A Doat_file.h87 class OatDexFile;
222 friend class OatDexFile;
225 class OatDexFile { class in class:art::OatFile
227 // Opens the DexFile referred to by this OatDexFile from within the containing OatFile.
234 // Returns the size of the DexFile refered to by this OatDexFile.
237 // Returns original path of DexFile that was the source of this OatDexFile.
242 // Returns the canonical location of DexFile that was the source of this OatDexFile.
247 // Returns checksum of original DexFile that was the source of this OatDexFile;
258 ~OatDexFile();
261 OatDexFile(cons
[all...]

Completed in 668 milliseconds