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

  /art/runtime/
os.h 40 static File* CreateEmptyFile(const char* name);
os_linux.cc 38 static File* CreateEmptyFile(const char* name, int extra_flags) {
46 File* OS::CreateEmptyFile(const char* name) {
47 return art::CreateEmptyFile(name, O_RDWR | O_TRUNC);
51 return art::CreateEmptyFile(name, O_WRONLY | O_TRUNC | O_NOFOLLOW | O_CLOEXEC);
oat_file_assistant.cc 658 std::unique_ptr<File> vdex_file(OS::CreateEmptyFile(vdex_file_name.c_str()));
673 std::unique_ptr<File> oat_file(OS::CreateEmptyFile(oat_file_name.c_str()));
    [all...]
dex_file_test.cc 192 std::unique_ptr<File> file(OS::CreateEmptyFile(location));
dex_file_verifier_test.cc 101 std::unique_ptr<File> file(OS::CreateEmptyFile(location));
    [all...]
  /art/runtime/gc/space/
image_space_fs.h 118 file.reset(OS::CreateEmptyFile(file_name));
  /art/compiler/jit/
jit_logger.cc 257 jit_dump_file_.reset(OS::CreateEmptyFile(jitdump_filename.c_str()));
  /art/compiler/
image_test.cc 178 image_files.push_back(ScratchFile(OS::CreateEmptyFile(image_filename.c_str())));
185 oat_files.push_back(ScratchFile(OS::CreateEmptyFile(oat_filename.c_str())));
188 vdex_files.push_back(ScratchFile(OS::CreateEmptyFile(vdex_filename.c_str())));
image_writer.cc 213 image_file.reset(OS::CreateEmptyFile(image_filename));
    [all...]
  /art/dex2oat/
dex2oat_test.cc 64 oat_file.reset(OS::CreateEmptyFile(odex_location.c_str()));
642 app_image_file.reset(OS::CreateEmptyFile(app_image_file_name.c_str()));
715 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str()));
dex2oat.cc     [all...]
  /art/dexlayout/
dexlayout_test.cc 234 std::unique_ptr<File> file(OS::CreateEmptyFile(location));
dexlayout.cc     [all...]
  /art/patchoat/
patchoat.cc 72 std::unique_ptr<File> f(OS::CreateEmptyFile(name));
  /art/oatdump/
oatdump.cc 128 File* elf_file = OS::CreateEmptyFile(output_name_.c_str());
    [all...]

Completed in 448 milliseconds