Home
last modified time | relevance | path

Searched refs:tmp_file (Results 1 – 2 of 2) sorted by relevance

/art/compiler/utils/
Dassembler_test_base.h483 std::string tmp_file = GetTmpnam(); in FindTool() local
485 args.push_back(tmp_file); in FindTool()
499 std::ifstream in(tmp_file.c_str()); in FindTool()
503 std::remove(tmp_file.c_str()); in FindTool()
507 std::remove(tmp_file.c_str()); in FindTool()
/art/dex2oat/
Ddex2oat.cc1300 std::unique_ptr<File> tmp_file(OS::CreateEmptyFile(tmp_file_name.c_str())); in Setup() local
1301 if (tmp_file.get() == nullptr) { in Setup()
1307 UNUSED(tmp_file->WriteFully(dex_file->Begin(), dex_file->Size())); in Setup()
1308 UNUSED(tmp_file->Flush()); in Setup()
1309 UNUSED(tmp_file->Close()); in Setup()