Home
last modified time | relevance | path

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

/external/e2fsprogs/debugfs/
Dlogdump.c79 FILE *out_file; in do_logdump() local
170 out_file = stdout; in do_logdump()
173 out_file = fopen(out_fn, "w"); in do_logdump()
174 if (!out_file) { in do_logdump()
248 fprintf(out_file, "Using external journal found at %s\n", in do_logdump()
255 dump_journal(argv[0], out_file, &journal_source); in do_logdump()
263 if (out_file && (out_file != stdout)) in do_logdump()
264 fclose(out_file); in do_logdump()
332 static void dump_journal(char *cmdname, FILE *out_file, in dump_journal() argument
367 fprintf(out_file, "Ext2 superblock header found.\n"); in dump_journal()
[all …]
/external/wpa_supplicant_8/src/utils/
Dwpa_debug.c61 static FILE *out_file = NULL; variable
75 if (out_file) { in wpa_debug_print_timestamp()
76 fprintf(out_file, "%ld.%06u: ", (long) tv.sec, in wpa_debug_print_timestamp()
221 if (out_file) { in wpa_printf()
222 vfprintf(out_file, fmt, ap); in wpa_printf()
223 fprintf(out_file, "\n"); in wpa_printf()
348 if (out_file) { in _wpa_hexdump()
349 fprintf(out_file, "%s - hexdump(len=%lu):", in _wpa_hexdump()
352 fprintf(out_file, " [NULL]"); in _wpa_hexdump()
355 fprintf(out_file, " %02x", buf[i]); in _wpa_hexdump()
[all …]
/external/libvpx/libvpx/build/make/
Dversion.sh23 out_file=${2}
71 if [ -n "$out_file" ]; then
72 diff $$.tmp ${out_file} >/dev/null 2>&1 || cat $$.tmp > ${out_file}
/external/lldb/examples/python/
Dcrashlog.py543 out_file = open(args[0], 'w')
544 if not out_file:
552 out_file.write('Process: %s [%u]\n' % (identifier, pid))
553 out_file.write('Path: %s\n' % (lldb.target.executable.fullpath))
554 out_file.write('Identifier: %s\n' % (identifier))
555out_file.write('\nDate/Time: %s\n' % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")))
556out_file.write('OS Version: Mac OS X %s (%s)\n' % (platform.mac_ver()[0], commands.getoutput(…
557 out_file.write('Report Version: 9\n')
560 out_file.write('\nThread %u:\n' % (thread_idx))
574out_file.write('%-3u %-32s 0x%16.16x %s' % (frame_idx, frame.module.file.basename, frame_pc, frame…
[all …]
/external/lldb/test/functionalities/process_launch/
DTestProcessLaunch.py42 out_file = os.path.join (os.getcwd(), "output-test.out")
48 os.remove (out_file)
57 launch_command = "process launch -i " + in_file + " -o " + out_file + " -e " + err_file
68 out_f = open (out_file)
82 os.remove (out_file)
/external/clang/www/
Dmake_cxx_dr_status49 out_file = file(output, 'w') variable
51 print >> out_file, '''\
156 print >> out_file, '''\
167 print >> out_file, '''\
/external/lldb/source/Core/
DInputReader.cpp313 File &out_file = m_debugger.GetOutputFile(); in RefreshPrompt() local
314 if (out_file.IsValid()) in RefreshPrompt()
316 out_file.Printf ("%s", m_prompt.c_str()); in RefreshPrompt()
317 out_file.Flush(); in RefreshPrompt()
DDebugger.cpp764 File &out_file = GetOutputFile(); in SetOutputFileHandle() local
765 out_file.SetStream (fh, tranfer_ownership); in SetOutputFileHandle()
766 if (out_file.IsValid() == false) in SetOutputFileHandle()
767 out_file.SetStream (stdout, false); in SetOutputFileHandle()
/external/owasp/sanitizer/tools/
Dcut_release.py140 out_file = open(path, "w")
142 out_file.write("\n".join(lines))
144 out_file.close()
/external/boringssl/src/crypto/bio/
Dfile.c324 int BIO_get_fp(BIO *bio, FILE **out_file) { in BIO_get_fp() argument
325 return BIO_ctrl(bio, BIO_C_GET_FILE_PTR, 0, (char*) out_file); in BIO_get_fp()
/external/valgrind/callgrind/
Ddump.c39 static HChar* out_file = 0; variable
1184 i = VG_(sprintf)(filename, "%s", out_file); in new_dumpfile()
1195 VG_(sprintf)(filename, "%s", out_file); in new_dumpfile()
1570 CLG_ASSERT(out_file != 0); in CLG_()
1579 if (out_file) { in CLG_()
1580 VG_(free)(out_file); in CLG_()
1586 out_file = in CLG_()
1591 VG_(strlen)(out_file)+32); in CLG_()
1599 VG_(strcpy)(filename, out_file); in CLG_()
/external/boringssl/src/util/
Dgenerate_build_files.py254 with open(output_filename, 'w+') as out_file:
255 out_file.write(output)
/external/lldb/source/Interpreter/
DCommandInterpreter.cpp2083 File &out_file = reader.GetDebugger().GetOutputFile(); in GetConfirmationInputReaderCallback() local
2089 if (out_file.IsValid()) in GetConfirmationInputReaderCallback()
2093 out_file.Printf ("%s", reader.GetPrompt()); in GetConfirmationInputReaderCallback()
2094 out_file.Flush (); in GetConfirmationInputReaderCallback()
2103 if (out_file.IsValid() && reader.GetPrompt()) in GetConfirmationInputReaderCallback()
2105 out_file.Printf ("%s", reader.GetPrompt()); in GetConfirmationInputReaderCallback()
2106 out_file.Flush (); in GetConfirmationInputReaderCallback()
2130 if (out_file.IsValid() && !reader.IsDone() && reader.GetPrompt()) in GetConfirmationInputReaderCallback()
2132 out_file.Printf ("Please answer \"y\" or \"n\".\n%s", reader.GetPrompt()); in GetConfirmationInputReaderCallback()
2133 out_file.Flush (); in GetConfirmationInputReaderCallback()
DScriptInterpreterPython.cpp537 File& out_file = interpreter.GetDebugger().GetOutputFile(); in ScriptInterpreterPython() local
538 if (out_file.IsValid()) in ScriptInterpreterPython()
539 ResetOutputFileHandle(out_file.GetStream()); in ScriptInterpreterPython()
/external/webrtc/src/modules/audio_processing/test/
Dprocess_test.cc410 FILE* out_file = NULL; in void_main() local
447 out_file = fopen(out_filename, "wb"); in void_main()
448 ASSERT_TRUE(NULL != out_file) << "Unable to open output audio file " in void_main()
666 out_file)); in void_main()
865 out_file)); in void_main()
/external/pdfium/samples/
Dimage_diff.cc322 const std::string& out_file) { in DiffImages() argument
345 FILE *f = fopen(out_file.c_str(), "wb"); in DiffImages()
/external/openssh/
Dssh-keygen.c2240 char out_file[PATH_MAX], *rr_hostname = NULL, *ep, *fp, *ra; in main() local
2449 if (strlcpy(out_file, optarg, sizeof(out_file)) >= in main()
2450 sizeof(out_file)) in main()
2455 if (strlcpy(out_file, optarg, sizeof(out_file)) >= in main()
2456 sizeof(out_file)) in main()
2570 FILE *out = fopen(out_file, "w"); in main()
2574 out_file, strerror(errno)); in main()
2587 FILE *out = fopen(out_file, "a"); in main()
2600 out_file, strerror(errno)); in main()
/external/lldb/tools/lldb-perf/common/stepping/
Dlldb-perf-stepping.cpp173 std::string out_file; member
/external/lldb/tools/lldb-perf/common/clang/
Dlldb_perf_clang.cpp284 std::string out_file; member
/external/selinux/libsepol/src/
Dmodule_to_cil.c53 FILE *out_file; variable
76 if (fprintf(out_file, "%*s", indent * 4, "") < 0) { in cil_indent()
86 if (vfprintf(out_file, fmt, argptr) < 0) { in cil_printf()
99 if (vfprintf(out_file, fmt, argptr) < 0) { in cil_println()
104 if (fprintf(out_file, "\n") < 0) { in cil_println()
3764 out_file = fp; in sepol_module_policydb_to_cil()
3870 out_file = fp; in sepol_module_package_to_cil()
/external/boringssl/src/include/openssl/
Dbio.h485 OPENSSL_EXPORT int BIO_get_fp(BIO *bio, FILE **out_file);
/external/chromium-trace/trace-viewer/tracing/third_party/python_gflags/
Dgflags.py1698 out_file = open(filename, 'a')
1699 out_file.write(self.FlagsIntoString())
1700 out_file.close()
/external/webp/
DREADME141 cwebp [-preset <...>] [options] in_file [-o out_file]
253 Usage: dwebp in_file [options] [-o out_file]