Home
last modified time | relevance | path

Searched refs:outfile (Results 1 – 8 of 8) 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/bt/build/toolchain/gcc/
DBUILD.gn78 outfile = "{{target_output_name}}{{output_extension}}"
79 rspfile = "$outfile.rsp"
80 …command = "$cxx {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group {{l…
81 description = "LINK $outfile"
84 outfile,
/system/bt/build/toolchain/clang/
DBUILD.gn97 outfile = "{{target_output_name}}{{output_extension}}"
98 rspfile = "$outfile.rsp"
99 …command = "$clangxx {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group…
100 description = "LINK $outfile"
103 outfile,
/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.cpp292 RetCode FastBootDriver::Upload(const std::string& outfile, std::string* response, in Upload() argument
294 prolog_("Uploading '" + outfile + "'"); in Upload()
295 auto result = UploadInner(outfile, response, info); in Upload()
300 RetCode FastBootDriver::UploadInner(const std::string& outfile, std::string* response, in UploadInner() argument
322 ofs.open(outfile, std::ofstream::out | std::ofstream::binary); in UploadInner()
324 error_ = android::base::StringPrintf("Failed to open '%s'", outfile.c_str()); in UploadInner()
329 error_ = android::base::StringPrintf("Writing to '%s' failed", outfile.c_str()); in UploadInner()
Dfastboot_driver.h105 RetCode Upload(const std::string& outfile, std::string* response = nullptr,
155 RetCode UploadInner(const std::string& outfile, std::string* response = nullptr,
/system/libufdt/utils/src/
Dmkdtboimg.py834 args.outfile.write(str(dtbo) + '\n')
835 args.outfile.close()