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

  /art/libartbase/base/
os_linux.cc 40 static File* CreateEmptyFile(const char* name, int extra_flags) {
48 File* OS::CreateEmptyFile(const char* name) {
49 return art::CreateEmptyFile(name, O_RDWR | O_TRUNC);
53 return art::CreateEmptyFile(name, O_WRONLY | O_TRUNC | O_NOFOLLOW | O_CLOEXEC);
os.h 42 static File* CreateEmptyFile(const char* name);
  /art/runtime/gc/space/
image_space_fs.h 119 file.reset(OS::CreateEmptyFile(file_name));
  /art/dex2oat/linker/
image_test.h 184 image_files.push_back(ScratchFile(OS::CreateEmptyFile(image_filename.c_str())));
191 oat_files.push_back(ScratchFile(OS::CreateEmptyFile(oat_filename.c_str())));
194 vdex_files.push_back(ScratchFile(OS::CreateEmptyFile(vdex_filename.c_str())));
image_writer.cc 216 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/dex2oat/
dex2oat_test.cc 79 oat_file.reset(OS::CreateEmptyFile(odex_location.c_str()));
708 app_image_file.reset(OS::CreateEmptyFile(app_image_file_name.c_str()));
781 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str()));
    [all...]
dex2oat.cc     [all...]
  /art/dexlayout/
dexlayout_test.cc 244 std::unique_ptr<File> file(OS::CreateEmptyFile(location));
377 std::unique_ptr<File> file(OS::CreateEmptyFile(out_profile.c_str()));
    [all...]
dexlayout.cc     [all...]
  /art/runtime/
oat_file_assistant.cc 743 Dex2oatFileWrapper vdex_file_wrapper(OS::CreateEmptyFile(vdex_file_name.c_str()));
759 Dex2oatFileWrapper oat_file_wrapper(OS::CreateEmptyFile(oat_file_name.c_str()));
    [all...]
  /art/patchoat/
patchoat.cc 84 std::unique_ptr<File> f(OS::CreateEmptyFile(name));
    [all...]
  /art/oatdump/
oatdump.cc 139 std::unique_ptr<File> elf_file(OS::CreateEmptyFile(output_name_.c_str()));
    [all...]

Completed in 637 milliseconds