Home
last modified time | relevance | path

Searched refs:out_file (Results 1 – 11 of 11) sorted by relevance

/system/bt/gd/packet/parser/
Dmain.cc113 std::ofstream out_file; in generate_cpp_headers_one_file() local
114 out_file.open(gen_file); in generate_cpp_headers_one_file()
115 if (!out_file.is_open()) { in generate_cpp_headers_one_file()
120 out_file << "\n\n"; in generate_cpp_headers_one_file()
121 out_file << "#pragma once\n"; in generate_cpp_headers_one_file()
122 out_file << "\n\n"; in generate_cpp_headers_one_file()
123 out_file << "#include <cstdint>\n"; in generate_cpp_headers_one_file()
124 out_file << "#include <sstream>\n"; in generate_cpp_headers_one_file()
125 out_file << "#include <string>\n"; in generate_cpp_headers_one_file()
126 out_file << "#include <type_traits>\n"; in generate_cpp_headers_one_file()
[all …]
/system/sepolicy/tools/
Dcheck_seapp.c166 static file_info out_file; variable
867 has_out_file = out_file.name != NULL; in init()
870 if (has_out_file && !strcmp(out_file.name, "-")) { in init()
871 out_file.file = stdout; in init()
872 out_file.name = "stdout"; in init()
875 out_file.file = fopen(out_file.name, "w+"); in init()
878 if (has_out_file && !out_file.file) { in init()
879 log_error("Could not open file: \"%s\" error: \"%s\"\n", out_file.name, in init()
928 log_info("Output file set to: \"%s\"\n", out_file.name); in init()
955 out_file.name = optarg; in handle_options()
[all …]
/system/extras/simpleperf/
Dcmd_kmem_test.cpp78 std::string out_file; in RunKmemRecordCmd() local
80 out_file = output_file; in RunKmemRecordCmd()
83 out_file = tmpfile->path; in RunKmemRecordCmd()
86 v.insert(v.end(), {"-o", out_file, "sleep", SLEEP_SEC}); in RunKmemRecordCmd()
Dcmd_record_test.cpp75 std::string out_file; in RunRecordCmd() local
77 out_file = output_file; in RunRecordCmd()
80 out_file = tmpfile->path; in RunRecordCmd()
82 v.insert(v.end(), {"-o", out_file, "sleep", SLEEP_SEC}); in RunRecordCmd()
/system/libufdt/tests/src/
Dufdt_overlay_test_app.c85 const char *out_file = argv[3]; in main() local
86 int ret = apply_overlay_files(out_file, base_file, overlay_file); in main()
Dfdt_overlay_test_app.c80 const char *out_file = argv[3]; in main() local
81 int ret = apply_overlay_files(out_file, base_file, overlay_file); in main()
/system/timezone/debug_tools/host/
Dvisualize_zone_trees.py55 with open(png_file, 'w') as out_file:
56 subprocess.check_call(['dot', '-Tpng', gv_file], stdout=out_file)
/system/update_engine/scripts/update_payload/
Dapplier.py443 with tempfile.NamedTemporaryFile(delete=False) as out_file:
444 out_file_name = out_file.name
463 with open(out_file_name, 'rb') as out_file:
464 out_data = out_file.read()
Dchecker.py239 def Dump(self, out_file, base_indent=0, sub_indent=2): argument
252 out_file.write(line)
/system/update_engine/payload_generator/
Dgenerate_delta_main.cc141 const string& out_file, in SignPayload() argument
148 LOG_IF(FATAL, out_file.empty()) << "Must pass --out_file to sign payload."; in SignPayload()
159 out_file, in SignPayload()
335 DEFINE_string(out_file, "", "Path to output delta payload file"); in Main()
/system/update_engine/scripts/
Dbrillo_update_payload634 GENERATOR_ARGS=( --out_file="${FLAGS_payload}" )
768 --out_file="${FLAGS_payload}"