/external/e2fsprogs/debugfs/ |
D | logdump.c | 79 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/ |
D | wpa_debug.c | 61 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/ |
D | version.sh | 23 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/ |
D | crashlog.py | 543 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)) 555 …out_file.write('\nDate/Time: %s\n' % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))) 556 …out_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)) 574 …out_file.write('%-3u %-32s 0x%16.16x %s' % (frame_idx, frame.module.file.basename, frame_pc, frame… [all …]
|
/external/lldb/test/functionalities/process_launch/ |
D | TestProcessLaunch.py | 42 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/ |
D | make_cxx_dr_status | 49 out_file = file(output, 'w') variable 51 print >> out_file, '''\ 156 print >> out_file, '''\ 167 print >> out_file, '''\
|
/external/lldb/source/Core/ |
D | InputReader.cpp | 313 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()
|
D | Debugger.cpp | 764 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/ |
D | cut_release.py | 140 out_file = open(path, "w") 142 out_file.write("\n".join(lines)) 144 out_file.close()
|
/external/boringssl/src/crypto/bio/ |
D | file.c | 324 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/ |
D | dump.c | 39 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/ |
D | generate_build_files.py | 254 with open(output_filename, 'w+') as out_file: 255 out_file.write(output)
|
/external/lldb/source/Interpreter/ |
D | CommandInterpreter.cpp | 2083 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()
|
D | ScriptInterpreterPython.cpp | 537 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/ |
D | process_test.cc | 410 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/ |
D | image_diff.cc | 322 const std::string& out_file) { in DiffImages() argument 345 FILE *f = fopen(out_file.c_str(), "wb"); in DiffImages()
|
/external/openssh/ |
D | ssh-keygen.c | 2240 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/ |
D | lldb-perf-stepping.cpp | 173 std::string out_file; member
|
/external/lldb/tools/lldb-perf/common/clang/ |
D | lldb_perf_clang.cpp | 284 std::string out_file; member
|
/external/selinux/libsepol/src/ |
D | module_to_cil.c | 53 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/ |
D | bio.h | 485 OPENSSL_EXPORT int BIO_get_fp(BIO *bio, FILE **out_file);
|
/external/chromium-trace/trace-viewer/tracing/third_party/python_gflags/ |
D | gflags.py | 1698 out_file = open(filename, 'a') 1699 out_file.write(self.FlagsIntoString()) 1700 out_file.close()
|
/external/webp/ |
D | README | 141 cwebp [-preset <...>] [options] in_file [-o out_file] 253 Usage: dwebp in_file [options] [-o out_file]
|