Home
last modified time | relevance | path

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

/art/test/661-oat-writer-layout/
Dparse_oatdump_offsets.sh26 tmp_file="$(mktemp)"
34 echo $line $found_method >> "$tmp_file"
38 sort "$tmp_file"
/art/tools/
Dtest_presubmit.py112 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):
/art/dexlayout/
Ddexlayout_test.cc291 ScratchFile tmp_file; in DexFileOutputExec() local
292 const std::string& tmp_name = tmp_file.GetFilename(); in DexFileOutputExec()
384 ScratchFile tmp_file; in DexFileLayoutExec() local
385 const std::string& tmp_name = tmp_file.GetFilename(); in DexFileLayoutExec()
413 ScratchFile tmp_file; in DexFileLayoutFixedPointExec() local
414 const std::string& tmp_name = tmp_file.GetFilename(); in DexFileLayoutFixedPointExec()
476 ScratchFile tmp_file; in UnreferencedCatchHandlerExec() local
477 const std::string& tmp_name = tmp_file.GetFilename(); in UnreferencedCatchHandlerExec()
712 ScratchFile tmp_file; in TEST_F() local
713 const std::string& tmp_name = tmp_file.GetFilename(); in TEST_F()
[all …]
/art/test/etc/
Ddefault-build228 local tmp_file="$(mktemp)"
229 "$ZIPALIGN" -f "$ZIP_ALIGN_BYTES" "$zip_target" "$tmp_file"
231 mv "$tmp_file" "$zip_target"
/art/dex2oat/
Ddex2oat.cc2762 std::unique_ptr<File> tmp_file(OS::CreateEmptyFile(tmp_file_name.c_str())); in SaveDexInput() local
2763 if (tmp_file.get() == nullptr) { in SaveDexInput()
2769 UNUSED(tmp_file->WriteFully(dex_file->Begin(), dex_file->Size())); in SaveDexInput()
2770 UNUSED(tmp_file->Flush()); in SaveDexInput()
2771 UNUSED(tmp_file->Close()); in SaveDexInput()