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

  /art/runtime/
vdex_file.cc 17 #include "vdex_file.h"
68 std::unique_ptr<File> vdex_file; local
70 vdex_file.reset(OS::OpenFileReadWrite(vdex_filename.c_str()));
72 vdex_file.reset(OS::OpenFileForReading(vdex_filename.c_str()));
74 if (vdex_file == nullptr) {
80 int64_t vdex_length = vdex_file->GetLength();
86 return Open(vdex_file->Fd(), vdex_length, vdex_filename, writable, low_4gb, unquicken, error_msg);
oat_file_assistant.cc 39 #include "vdex_file.h"
718 File* vdex_file = vdex_file_wrapper.GetFile(); local
719 if (vdex_file == nullptr) {
726 if (fchmod(vdex_file->Fd(), file_mode) != 0) {
749 args.push_back("--output-vdex-fd=" + std::to_string(vdex_file->Fd()));
762 if (vdex_file->FlushCloseOrErase() != 0) {
    [all...]
oat_file.h 75 VdexFile* vdex_file,
oat_file.cc 59 #include "vdex_file.h"
    [all...]
runtime.cc 156 #include "vdex_file.h"
    [all...]
oat_file_assistant_test.cc 305 ScratchFile vdex_file(vdex_location.c_str());
    [all...]
  /art/compiler/
oat_test.cc 127 bool WriteElf(File* vdex_file,
146 return DoWriteElf(vdex_file, oat_file, oat_writer, key_value_store, verify);
149 bool WriteElf(File* vdex_file,
162 return DoWriteElf(vdex_file, oat_file, oat_writer, key_value_store, verify);
165 bool WriteElf(File* vdex_file,
178 return DoWriteElf(vdex_file, oat_file, oat_writer, key_value_store, verify);
181 bool DoWriteElf(File* vdex_file,
195 if (!oat_writer.WriteAndOpenDexFiles(kIsVdexEnabled ? vdex_file : oat_file,
229 std::make_unique<BufferedOutputStream>(std::make_unique<FileOutputStream>(vdex_file));
605 ScratchFile oat_file, vdex_file(oat_file, ".vdex")
    [all...]
oat_writer.h 153 const VdexFile& vdex_file,
164 bool WriteAndOpenDexFiles(File* vdex_file,
image_test.h 121 for (ScratchFile& vdex_file : vdex_files) {
122 vdex_file.Unlink();
oat_writer.cc 57 #include "vdex_file.h"
452 bool OatWriter::AddVdexDexFilesSource(const VdexFile& vdex_file,
457 for (size_t i = 0; i < vdex_file.GetHeader().GetNumberOfDexFiles(); ++i) {
458 current_dex_data = vdex_file.GetNextDexFileData(current_dex_data);
473 oat_dex_files_.back().dex_file_location_checksum_ = vdex_file.GetLocationChecksum(i);
476 if (vdex_file.GetNextDexFileData(current_dex_data) != nullptr) {
529 File* vdex_file,
562 std::make_unique<BufferedOutputStream>(std::make_unique<FileOutputStream>(vdex_file));
564 if (!WriteDexFiles(vdex_out.get(), vdex_file, update_input_vdex) ||
565 !OpenDexFiles(vdex_file, verify, &dex_files_map, &dex_files))
    [all...]
  /art/dex2oat/
dex2oat.cc 90 #include "vdex_file.h"
641 for (std::unique_ptr<File>& vdex_file : vdex_files_) {
642 vdex_file.release();
2056 File* vdex_file = vdex_files_[i].get(); local
    [all...]
dex2oat_image_test.cc 123 std::string vdex_file = scratch.GetFilename() + ".vdex"; local
126 ret.vdex_size = GetFileSizeBytes(vdex_file);
129 CHECK_GT(ret.vdex_size, 0u) << vdex_file;

Completed in 1085 milliseconds