HomeSort by relevance Sort by last modified time
    Searched refs:CreateEmptyFile (Results 1 - 11 of 11) 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);
dex_file_test.cc 145 std::unique_ptr<File> file(OS::CreateEmptyFile(location));
oat_file_assistant.cc 699 oat_file.reset(OS::CreateEmptyFile(oat_file_name.c_str()));
    [all...]
dex_file_verifier_test.cc 165 std::unique_ptr<File> file(OS::CreateEmptyFile(location));
    [all...]
  /art/runtime/gc/space/
image_space_fs.h 114 file.reset(OS::CreateEmptyFile(file_name));
  /art/compiler/
image_test.cc 147 image_files.push_back(ScratchFile(OS::CreateEmptyFile(image_filename.c_str())));
153 oat_files.push_back(ScratchFile(OS::CreateEmptyFile(oat_filename.c_str())));
image_writer.cc 207 image_file.reset(OS::CreateEmptyFile(image_filename));
    [all...]
  /art/dex2oat/
dex2oat.cc     [all...]
  /art/oatdump/
oatdump.cc 115 File* elf_file = OS::CreateEmptyFile(output_name_.c_str());
694 std::unique_ptr<File> file(OS::CreateEmptyFile(out_dex_path.c_str()));
    [all...]
  /art/patchoat/
patchoat.cc 127 std::unique_ptr<File> f(OS::CreateEmptyFile(name));
    [all...]

Completed in 526 milliseconds