HomeSort by relevance Sort by last modified time
    Searched defs:out_file (Results 1 - 25 of 35) sorted by null

1 2

  /art/dexlayout/
dexlayout_main.cc 163 FILE* out_file = stdout; local
165 out_file = fopen(options.output_file_name_, "w");
166 if (!out_file) {
188 DexLayout dex_layout(options, profile_info.get(), out_file);
197 CHECK(out_file != nullptr && out_file != stdout);
198 fclose(out_file);
  /external/ltp/testcases/kernel/syscalls/sendfile/
sendfile08.c 48 static char *out_file = "sendfile08.out"; variable
72 out_file);
76 out_file);
117 out_fd = open(out_file, O_TRUNC | O_CREAT | O_RDWR, 0777);
119 tst_brkm(TBROK | TERRNO, cleanup, "Open %s failed", out_file);
122 tst_brkm(TBROK | TERRNO, cleanup, "Write %s failed", out_file);
sendfile03.c 65 char in_file[100], out_file[100]; variable
157 sprintf(out_file, "out.%d", getpid());
158 if ((out_fd = open(out_file, O_TRUNC | O_CREAT | O_RDWR, 0777)) < 0) {
sendfile05.c 63 char out_file[100]; variable
158 sprintf(out_file, "out.%d", getpid());
sendfile09.c 62 static char *out_file = "out"; variable
91 out_fd = SAFE_OPEN(cleanup, out_file, O_WRONLY);
150 fd = SAFE_CREAT(cleanup, out_file, 00700);
sendfile02.c 69 char out_file[100]; variable
196 sprintf(out_file, "out.%d", getpid());
sendfile04.c 68 char out_file[100]; variable
194 sprintf(out_file, "out.%d", getpid());
  /external/webrtc/webrtc/modules/audio_processing/test/
audioproc_float.cc 131 auto out_file = rtc_make_scoped_ptr(new WavWriter( local
133 std::cout << FLAGS_o << ": " << out_file->FormatAsString() << std::endl;
138 std::move(out_file)));
142 std::move(ap), fopen(FLAGS_dump.c_str(), "rb"), std::move(out_file)));
  /system/libufdt/tests/src/
fdt_overlay_test_app.c 74 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);
ufdt_overlay_test_app.c 79 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);
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 104 File out_file = null; local
107 out_file = new File(class_name + ".dex");
109 out_file = new File(dest_dir, class_name + ".dex");
127 outp = new FileOutputStream(out_file);
133 " while writing " + out_file.getPath());
137 out_file.delete();
  /external/clang/www/
make_cxx_dr_status 49 out_file = file(output, 'w') variable
51 print >> out_file, '''\
156 print >> out_file, '''\
167 print >> out_file, '''\
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
RTPchange.cc 41 FILE* out_file = fopen(argv[3], "wb"); local
42 if (!out_file) {
77 fputs(first_line, out_file);
85 if (fwrite(first_line, 1, kRtpDumpHeaderSize, out_file)
121 if ((*it)->writeToFile(out_file) < 0) {
130 fclose(out_file);
audio_classifier_test.cc 65 FILE* out_file = fopen(output_filename.c_str(), "wb"); local
66 if (!out_file) {
77 if (!fwrite(&is_music, sizeof(is_music), 1, out_file)) {
87 if (!fwrite(&music_prob, sizeof(music_prob), 1, out_file)) {
103 fclose(out_file);
RTPjitter.cc 106 FILE* out_file=fopen(argv[3],"wb"); local
107 CHECK_NOT_NULL(out_file);
140 EXPECT_GT(fputs(firstline, out_file), 0);
144 out_file));
198 out_file) !=
214 fclose(out_file);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtp_analyze.cc 83 FILE* out_file; local
85 out_file = fopen(argv[2], "wt");
86 if (!out_file) {
92 out_file = stdout;
96 fprintf(out_file, "SeqNo TimeStamp SendTime Size PT M SSRC");
98 fprintf(out_file, " AuLvl (V)");
101 fprintf(out_file, " AbsSendTime");
103 fprintf(out_file, "\n");
116 fprintf(out_file,
126 fprintf(out_file,
    [all...]
  /system/extras/simpleperf/
cmd_kmem_test.cpp 77 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});
cmd_record_test.cpp 49 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});
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
main.cc 106 char out_file[PATH_MAX] = {}; local
128 strncpy(out_file, optarg, sizeof(out_file));
148 unlink(out_file);
149 sprintf(tmp_file, "%s.tmp", out_file);
197 rename(tmp_file, out_file);
  /external/webrtc/webrtc/modules/audio_processing/transient/
transient_suppression_test.cc 165 FILE* out_file = fopen(out_file_name.c_str(), "wb"); local
166 ASSERT_TRUE(out_file != NULL);
230 out_file, audio_buffer_size, FLAGS_num_channels, audio_buffer_f.get());
240 fclose(out_file);
  /cts/tools/dasm/src/dasm/
Main.java 126 File out_file = null; local
130 out_file = new File(class_name + ".dex");
133 out_file = new File(dest_dir, class_name + ".dex");
153 outp = new FileOutputStream(out_file);
159 + e.getMessage() + " while writing " + out_file.getPath());
165 out_file.delete();
173 System.out.println("Generated: " + out_file.getPath());
  /external/e2fsprogs/contrib/android/
ext2simg.c 31 char *out_file; member in struct:__anon17793
206 params.out_file = strdup(argv[optind]);
207 params.overwrite_input = same_file(params.in_file, params.out_file);
211 out_fd = open(params.out_file, O_WRONLY | O_CREAT | O_TRUNC, 0664);
213 ext2fs_fatal(errno, "opening %s\n", params.out_file);
220 free(params.out_file);
  /external/webrtc/webrtc/modules/audio_coding/test/
TestVADDTX.cc 96 PCMFile out_file; local
98 out_file.Open(out_filename, kOutputFreqHz, "ab");
100 out_file.Open(out_filename, kOutputFreqHz, "wb");
112 out_file.Write10MsData(audio_frame);
116 out_file.Close();
  /external/selinux/libselinux/utils/
sefcontext_compile.c 272 "usage: %s [-o out_file] [-p policy_file] fc_file\n"
298 const char *out_file = NULL; local
314 out_file = optarg;
401 if (out_file)
402 rc = snprintf(stack_path, sizeof(stack_path), "%s", out_file);
  /system/sepolicy/tools/fc_sort/
fc_sort.c 327 FILE *in_file, *out_file; local
529 if (!(out_file = fopen(output_name, "w"))) {
534 out_file = stdout;
541 fprintf(out_file, "%s\t\t", current->path);
545 fprintf(out_file, "%s\t", current->file_type);
549 fprintf(out_file, "%s\n", current->context);
562 fclose(out_file);

Completed in 1562 milliseconds

1 2