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.cc758 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_) {
1096 OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) { function in class:OatWriter::OatDexFile
1106 size_t OatWriter::OatDexFile::SizeOf() const {
1114 void OatWriter::OatDexFile::UpdateChecksum(OatHeader* oat_header) const {
1123 bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
/art/runtime/
H A Doat_file.cc258 *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 #
440 OatFile::OatDexFile::OatDexFile(const OatFile* oat_file, function in class:art::OatFile::OatDexFile
[all...]
H A Doat_file.h90 class OatDexFile;
219 friend class OatDexFile;
222 class OatDexFile { class in class:art::OatFile
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(cons
[all...]

Completed in 1531 milliseconds