Home
last modified time | relevance | path

Searched refs:outfile (Results 1 – 9 of 9) sorted by relevance

/system/media/audio_utils/tests/
Dbiquad_filter.cpp61 const char *outfile = argv[argc - 1]; in main() local
63 if (infile == nullptr || outfile == nullptr) { in main()
70 printf("%s ", outfile); in main()
97 std::fopen(outfile, "wb"), &std::fclose); in main()
99 printf("Cannot open output file %s\n", outfile); in main()
/system/apex/tests/testdata/sharedlibs/build/
Dbuild_artifacts.sh94 outfile=${ar[1]}.v${apexversion}.libv${libversion}.apex
95 if printf '%s\n' "${OUTFILES[@]}" | grep -q -F "${outfile}"; then
117 outfile=${ar[1]}.v${apexversion}.libv${libversion}.apex
118 if printf '%s\n' "${OUTFILES[@]}" | grep -q -P "^${outfile}\$"; then
121 system/apex/tests/testdata/sharedlibs/prebuilts/${arch}/${outfile}
122 … generated_artifacts+=(system/apex/tests/testdata/sharedlibs/prebuilts/${arch}/${outfile})
164 outfile=$(basename "${artifact}")
166 rulename=${outfile%.apex}
178 src: "${arch}/${outfile}",
185 filename: "${outfile}",
/system/update_engine/scripts/
Dtrim_ota_package.py27 outfile = argv[2]
28 with zipfile.ZipFile(infile, "r") as inzfp, zipfile.ZipFile(outfile, "w") as outzfp:
/system/extras/ioshark/
Dconvert_format.c91 char *infile, *outfile; in main() local
109 outfile = argv[2]; in main()
126 new_fp = fopen(outfile, "w+"); in main()
Dcompile_ioshark.c535 char *infile, *outfile; in main() local
545 outfile = argv[2]; in main()
658 fp = fopen(outfile, "w+"); in main()
/system/core/fastboot/
Dfastboot_driver.cpp300 RetCode FastBootDriver::Upload(const std::string& outfile, std::string* response, in Upload() argument
302 prolog_("Uploading '" + outfile + "'"); in Upload()
303 auto result = UploadInner(outfile, response, info); in Upload()
345 RetCode FastBootDriver::UploadInner(const std::string& outfile, std::string* response, in UploadInner() argument
348 ofs.open(outfile, std::ofstream::out | std::ofstream::binary); in UploadInner()
350 error_ = android::base::StringPrintf("Failed to open '%s'", outfile.c_str()); in UploadInner()
356 error_ = android::base::StringPrintf("Writing to '%s' failed", outfile.c_str()); in UploadInner()
Dfastboot_driver.h100 RetCode Upload(const std::string& outfile, std::string* response = nullptr,
151 RetCode UploadInner(const std::string& outfile, std::string* response = nullptr,
Dfastboot.cpp1455 const std::string& outfile, fastboot::IFastBootDriver* fb) { in do_fetch() argument
1457 open(outfile.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_BINARY, 0644))); in do_fetch()
2600 std::string outfile = next_arg(&args); in Main() local
2601 do_fetch(partition, fp->slot_override, outfile, fp->fb); in Main()
/system/libufdt/utils/src/
Dmkdtboimg.py875 args.outfile.write(str(dtbo) + '\n')
876 args.outfile.close()