Searched defs:out_file (Results 1 - 7 of 7) sorted by relevance

/system/extras/simpleperf/
H A Dcmd_kmem_test.cpp77 std::string out_file; local
79 out_file = output_file;
82 out_file = tmpfile->path;
85 v.insert(v.end(), {"-o", out_file, "sleep", SLEEP_SEC});
H A Dcmd_record_test.cpp49 std::string out_file; local
51 out_file = output_file;
54 out_file = tmpfile->path;
56 v.insert(v.end(), {"-o", out_file, "sleep", SLEEP_SEC});
/system/libufdt/tests/src/
H A Dfdt_overlay_test_app.c74 fprintf(stderr, "Usage: %s <base_file> <overlay_file> <out_file>\n", argv[0]);
80 const char *out_file = argv[3]; local
81 int ret = apply_overlay_files(out_file, base_file, overlay_file);
H A Dufdt_overlay_test_app.c79 fprintf(stderr, "Usage: %s <base_file> <overlay_file> <out_file>\n", argv[0]);
85 const char *out_file = argv[3]; local
86 int ret = apply_overlay_files(out_file, base_file, overlay_file);
/system/sepolicy/tools/fc_sort/
H A Dfc_sort.c341 FILE *in_file, *out_file; local
582 if (!(out_file = fopen(output_name, "w"))) {
589 out_file = stdout;
597 fprintf(out_file, "%s\t\t", current->path);
601 fprintf(out_file, "%s\t", current->file_type);
605 fprintf(out_file, "%s", current->context);
609 fprintf(out_file, "\t%s", current->extra);
612 fprintf(out_file, "\n");
621 fclose(out_file);
/system/update_engine/payload_generator/
H A Dgenerate_delta_main.cc143 const string& out_file,
150 LOG_IF(FATAL, out_file.empty())
151 << "Must pass --out_file to sign payload.";
159 metadata_signatures, out_file, &final_metadata_size));
299 DEFINE_string(out_file, "", "Path to output delta payload file");
142 SignPayload(const string& in_file, const string& out_file, const string& payload_signature_file, const string& metadata_signature_file, const string& out_metadata_size_file) argument
/system/sepolicy/tools/
H A Dcheck_seapp.c166 static file_info out_file; variable
867 has_out_file = out_file.name != NULL;
870 if (has_out_file && !strcmp(out_file.name, "-")) {
871 out_file.file = stdout;
872 out_file.name = "stdout";
875 out_file.file = fopen(out_file.name, "w+");
878 if (has_out_file && !out_file.file) {
879 log_error("Could not open file: \"%s\" error: \"%s\"\n", out_file.name,
928 log_info("Output file set to: \"%s\"\n", out_file
[all...]

Completed in 122 milliseconds