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

  /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...]
  /art/runtime/
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...]
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...]

Completed in 105 milliseconds