Home
last modified time | relevance | path

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

/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.cpp283 RetCode FastBootDriver::Upload(const std::string& outfile, std::string* response, in Upload() argument
285 prolog_("Uploading '" + outfile + "'"); in Upload()
286 auto result = UploadInner(outfile, response, info); in Upload()
291 RetCode FastBootDriver::UploadInner(const std::string& outfile, std::string* response, in UploadInner() argument
313 ofs.open(outfile, std::ofstream::out | std::ofstream::binary); in UploadInner()
315 error_ = android::base::StringPrintf("Failed to open '%s'", outfile.c_str()); in UploadInner()
320 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,
153 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()