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 717 Dex2oatFileWrapper vdex_file_wrapper(OS::CreateEmptyFile(vdex_file_name.c_str()));
733 Dex2oatFileWrapper oat_file_wrapper(OS::CreateEmptyFile(oat_file_name.c_str()));
    [all...]
dex_file_test.cc 194 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/
image_test.h 182 image_files.push_back(ScratchFile(OS::CreateEmptyFile(image_filename.c_str())));
189 oat_files.push_back(ScratchFile(OS::CreateEmptyFile(oat_filename.c_str())));
192 vdex_files.push_back(ScratchFile(OS::CreateEmptyFile(vdex_filename.c_str())));
image_writer.cc 214 image_file.reset(OS::CreateEmptyFile(image_filename));
    [all...]
  /art/compiler/jit/
jit_logger.cc 254 jit_dump_file_.reset(OS::CreateEmptyFile(jitdump_filename.c_str()));
  /art/dexlayout/
dexlayout_test.cc 233 std::unique_ptr<File> file(OS::CreateEmptyFile(location));
370 std::unique_ptr<File> file(OS::CreateEmptyFile(out_profile.c_str()));
dexlayout.cc     [all...]
  /art/dex2oat/
dex2oat_test.cc 72 oat_file.reset(OS::CreateEmptyFile(odex_location.c_str()));
674 app_image_file.reset(OS::CreateEmptyFile(app_image_file_name.c_str()));
747 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str()));
868 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str()));
    [all...]
dex2oat.cc     [all...]
  /art/patchoat/
patchoat.cc 74 std::unique_ptr<File> f(OS::CreateEmptyFile(name));
    [all...]
  /art/oatdump/
oatdump.cc 130 std::unique_ptr<File> elf_file(OS::CreateEmptyFile(output_name_.c_str()));
    [all...]

Completed in 452 milliseconds