Searched refs:outfile (Results 1 – 9 of 9) sorted by relevance
/system/media/audio_utils/tests/ |
D | biquad_filter.cpp | 61 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/ |
D | build_artifacts.sh | 94 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/ |
D | trim_ota_package.py | 27 outfile = argv[2] 28 with zipfile.ZipFile(infile, "r") as inzfp, zipfile.ZipFile(outfile, "w") as outzfp:
|
/system/extras/ioshark/ |
D | convert_format.c | 91 char *infile, *outfile; in main() local 109 outfile = argv[2]; in main() 126 new_fp = fopen(outfile, "w+"); in main()
|
D | compile_ioshark.c | 535 char *infile, *outfile; in main() local 545 outfile = argv[2]; in main() 658 fp = fopen(outfile, "w+"); in main()
|
/system/core/fastboot/ |
D | fastboot_driver.cpp | 300 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()
|
D | fastboot_driver.h | 100 RetCode Upload(const std::string& outfile, std::string* response = nullptr, 151 RetCode UploadInner(const std::string& outfile, std::string* response = nullptr,
|
D | fastboot.cpp | 1455 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/ |
D | mkdtboimg.py | 875 args.outfile.write(str(dtbo) + '\n') 876 args.outfile.close()
|