Searched refs:tmp_file (Results 1 – 6 of 6) sorted by relevance
26 tmp_file="$(mktemp)"34 echo $line $found_method >> "$tmp_file"38 sort "$tmp_file"
112 tmp_file = tempfile.mktemp()116 success = run_tool(tool_dict, tmp_file)120 print("$> %s" %(" ".join(command_line_for_tool(tool_dict, tmp_file))), file=sys.stderr)122 if run_diff(f, tool_dict, tmp_file):
291 ScratchFile tmp_file; in DexFileOutputExec() local292 const std::string& tmp_name = tmp_file.GetFilename(); in DexFileOutputExec()389 ScratchFile tmp_file; in DexFileLayoutExec() local390 const std::string& tmp_name = tmp_file.GetFilename(); in DexFileLayoutExec()418 ScratchFile tmp_file; in DexFileLayoutFixedPointExec() local419 const std::string& tmp_name = tmp_file.GetFilename(); in DexFileLayoutFixedPointExec()482 ScratchFile tmp_file; in UnreferencedCatchHandlerExec() local483 const std::string& tmp_name = tmp_file.GetFilename(); in UnreferencedCatchHandlerExec()726 ScratchFile tmp_file; in TEST_F() local727 const std::string& tmp_name = tmp_file.GetFilename(); in TEST_F()[all …]
503 std::string tmp_file = GetTmpnam(); in FindTool() local505 args.push_back(tmp_file); in FindTool()519 std::ifstream in(tmp_file.c_str()); in FindTool()523 std::remove(tmp_file.c_str()); in FindTool()527 std::remove(tmp_file.c_str()); in FindTool()534 const std::string& tmp_file) { in FindToolDumpPrintout() argument546 args.push_back(tmp_file); in FindToolDumpPrintout()562 std::ifstream in(tmp_file.c_str()); in FindToolDumpPrintout()570 std::remove(tmp_file.c_str()); in FindToolDumpPrintout()
257 local tmp_file="$(mktemp)"258 "$ZIPALIGN" -f "$ZIP_ALIGN_BYTES" "$zip_target" "$tmp_file"260 mv "$tmp_file" "$zip_target"
2564 std::unique_ptr<File> tmp_file(OS::CreateEmptyFile(tmp_file_name.c_str())); in SaveDexInput() local2565 if (tmp_file.get() == nullptr) { in SaveDexInput()2571 UNUSED(tmp_file->WriteFully(dex_file->Begin(), dex_file->Size())); in SaveDexInput()2572 UNUSED(tmp_file->Flush()); in SaveDexInput()2573 UNUSED(tmp_file->Close()); in SaveDexInput()