Home
last modified time | relevance | path

Searched refs:tmp_file (Results 1 – 6 of 6) 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/libartbase/base/
Dflags_test.cc33 TestFlag(ScratchFile* tmp_file, FlagType flag_type) { in TestFlag() argument
34 tmp_file_.reset(tmp_file); in TestFlag()
/art/test/etc/
Ddefault-build237 local tmp_file="$(mktemp)"
238 "$ZIPALIGN" -f "$ZIP_ALIGN_BYTES" "$zip_target" "$tmp_file"
240 mv "$tmp_file" "$zip_target"
/art/dex2oat/
Ddex2oat.cc2649 std::unique_ptr<File> tmp_file(OS::CreateEmptyFile(tmp_file_name.c_str())); in SaveDexInput() local
2650 if (tmp_file.get() == nullptr) { in SaveDexInput()
2656 UNUSED(tmp_file->WriteFully(dex_file->Begin(), dex_file->Size())); in SaveDexInput()
2657 UNUSED(tmp_file->Flush()); in SaveDexInput()
2658 UNUSED(tmp_file->Close()); in SaveDexInput()