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

/system/extras/simpleperf/
H A Dcmd_record_test.cpp40 std::string out_file; local
42 out_file = output_file;
45 out_file = tmpfile->path;
47 v.insert(v.end(), {"-o", out_file, "sleep", SLEEP_SEC});
/system/sepolicy/tools/fc_sort/
H A Dfc_sort.c327 FILE *in_file, *out_file; local
530 if (!(out_file = fopen(output_name, "w"))) {
535 out_file = stdout;
542 fprintf(out_file, "%s\t\t", current->path);
546 fprintf(out_file, "%s\t", current->file_type);
550 fprintf(out_file, "%s\n", current->context);
563 fclose(out_file);
/system/update_engine/payload_generator/
H A Dgenerate_delta_main.cc141 const string& out_file,
148 LOG_IF(FATAL, out_file.empty())
149 << "Must pass --out_file to sign payload.";
157 metadata_signatures, out_file, &final_metadata_size));
281 DEFINE_string(out_file, "", "Path to output delta payload file");
140 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
838 has_out_file = out_file.name != NULL;
841 if (has_out_file && !strcmp(out_file.name, "-")) {
842 out_file.file = stdout;
843 out_file.name = "stdout";
846 out_file.file = fopen(out_file.name, "w+");
849 if (has_out_file && !out_file.file) {
850 log_error("Could not open file: \"%s\" error: \"%s\"\n", out_file.name,
900 log_info("Output file set to: \"%s\"\n", out_file
[all...]

Completed in 665 milliseconds