Searched refs:log_file (Results 1 - 25 of 34) sorted by relevance

12

/external/lldb/examples/python/
H A Ddelta.py30 global log_file
31 if log_file:
32 result.PutCString ('error: logging is already in progress with file "%s"', log_file)
36 log_file = tempfile.mktemp()
38 log_file = args[0]
40 if log_file:
41 debugger.HandleCommand('log enable --threadsafe --timestamp --file "%s" gdb-remote packets' % log_file);
42 result.PutCString ("GDB packet logging enable with log file '%s'\nUse the 'stop_gdb_log' command to stop logging and show packet statistics." % log_file)
63 for log_file in args:
64 parse_log_file (log_file, option
[all...]
H A Ddisasm-stress-test.py56 def ResetLogFile(log_file):
57 if log_file != sys.stdout:
58 log_file.seek(0)
60 def PrintByteArray(log_file, byte_array):
62 print >>log_file, hex(byte) + " ",
63 print >>log_file
66 def __init__(self, byte_width, log_file, start=0, skip=1):
68 self.m_log_file = log_file
97 def __init__(self, byte_width, log_file):
99 self.m_log_file = log_file
118 log_file = None variable
[all...]
/external/v8/tools/
H A Dlinux-tick-processor4 log_file="v8.log"
8 log_file=${arg}
26 d8_exec=`grep -m 1 -o '".*/d8"' $log_file | sed 's/"//g'`
36 cat $log_file | $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \
H A Dplot-timer-events4 log_file="v8.log"
8 log_file=${arg}
30 d8_exec=`grep -m 1 -o '".*/d8"' $log_file | sed 's/"//g'`
79 cat $log_file |
/external/lldb/test/logging/
H A DTestLogging.py30 log_file = os.path.join (os.getcwd(), "lldb-commands-log-%s-%s-%s.txt" % (type,
34 if (os.path.exists (log_file)):
35 os.remove (log_file)
40 self.runCmd ("log enable -t -f '%s' lldb commands" % (log_file))
69 self.assertTrue (os.path.isfile (log_file))
73 f = open (log_file)
77 os.remove (log_file)
/external/google-breakpad/android/
H A Dtest-driver55 # TODO: $log_file, $trs_file and $test_name are defined).
57 log_file= # Where to save the output of the test script.
67 --log-file) log_file=$2; shift;;
90 do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
97 # ANDROID: old line was: "$@" > $log_file 2>&1
99 "$progdir/test-shell.sh" "$@" > $log_file 2>&1
/external/elfutils/src/config/
H A Dtest-driver54 log_file= # Where to save the output of the test script.
64 --log-file) log_file=$2; shift;;
78 test x"$log_file" = x && missing_opts="$missing_opts --log-file"
100 do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
107 "$@" >$log_file 2>&1
/external/google-breakpad/autotools/
H A Dtest-driver54 log_file= # Where to save the output of the test script.
64 --log-file) log_file=$2; shift;;
78 test x"$log_file" = x && missing_opts="$missing_opts --log-file"
100 do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
107 "$@" >$log_file 2>&1
/external/lldb/tools/lldb-platform/
H A Dlldb-platform.cpp145 FILE *log_file = fopen(optarg, "w"); local
146 if (log_file)
148 setlinebuf(log_file);
149 log_stream_sp.reset (new StreamFile (log_file, true));
/external/pcre/dist/
H A Dtest-driver54 log_file= # Where to save the output of the test script.
64 --log-file) log_file=$2; shift;;
78 test x"$log_file" = x && missing_opts="$missing_opts --log-file"
100 do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
107 "$@" >$log_file 2>&1
/external/protobuf/gtest/build-aux/
H A Dtest-driver54 log_file= # Where to save the output of the test script.
64 --log-file) log_file=$2; shift;;
78 test x"$log_file" = x && missing_opts="$missing_opts --log-file"
100 do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
107 "$@" >$log_file 2>&1
/external/protobuf/
H A Dtest-driver54 log_file= # Where to save the output of the test script.
64 --log-file) log_file=$2; shift;;
78 test x"$log_file" = x && missing_opts="$missing_opts --log-file"
100 do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
107 "$@" >$log_file 2>&1
/external/lldb/source/Commands/
H A DCommandObjectLog.cpp122 log_file (),
141 case 'f': log_file.SetFile(option_arg, true); break;
161 log_file.Clear();
177 FileSpec log_file; member in class:CommandObjectLogEnable::CommandOptions
194 char log_file[PATH_MAX]; local
195 if (m_options.log_file)
196 m_options.log_file.GetPath(log_file, sizeof(log_file));
198 log_file[
[all...]
/external/libpng/
H A Dtest-driver54 log_file= # Where to save the output of the test script.
64 --log-file) log_file=$2; shift;;
78 test x"$log_file" = x && missing_opts="$missing_opts --log-file"
100 do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
107 "$@" >$log_file 2>&1
/external/dnsmasq/src/
H A Dlog.c70 if (daemon->log_file)
78 if (!log_reopen(daemon->log_file))
104 int log_reopen(char *log_file) argument
111 if (log_file)
113 log_fd = open(log_file, O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR|S_IRGRP);
H A Ddnsmasq.c482 daemon->log_file, strerror(log_err));
799 die(_("cannot open %s: %s"), daemon->log_file ? daemon->log_file : "log", EC_FILE);
876 if (daemon->log_file != NULL)
877 log_reopen(daemon->log_file);
/external/llvm/utils/crosstool/ARM/
H A Dbuild-install-linux.sh84 local log_file="$2"
86 echo "=> $message; log in $log_file"
89 # e.g.: xterm -e /bin/bash -c "$* >| tee $log_file"
90 $* &> $log_file
/external/lldb/test/functionalities/register/
H A DTestRegisters.py80 if os.path.exists(self.log_file):
81 os.remove(self.log_file)
92 self.log_file = os.path.join(os.getcwd(), 'TestRegisters.log')
93 self.runCmd("log enable " + self.platform + " " + str(category) + " registers -v -f " + self.log_file, RUN_SUCCEEDED)
/external/webrtc/src/system_wrappers/source/
H A Ddata_log_unittest.cc45 // Verifies that the log table stored in the file "log_file" corresponds to
47 static int VerifyTable(FILE* log_file, const ExpectedValuesMap& columns) { argument
50 char* ret = fgets(line_buffer, kMaxLineLength, log_file);
57 while (fgets(line_buffer, kMaxLineLength, log_file) != NULL) {
/external/fio/os/windows/
H A Dposix.c326 static HANDLE log_file = INVALID_HANDLE_VALUE; variable
330 if (log_file == INVALID_HANDLE_VALUE)
331 log_file = CreateFileA("syslog.txt", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
336 CloseHandle(log_file);
337 log_file = INVALID_HANDLE_VALUE;
347 if (log_file == INVALID_HANDLE_VALUE) {
348 log_file = CreateFileA("syslog.txt", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
351 if (log_file == INVALID_HANDLE_VALUE) {
360 WriteFile(log_file, output, len, &bytes_written, NULL);
/external/lldb/tools/debugserver/source/
H A Ddebugserver.cpp830 FILE* log_file = NULL; local
993 log_file = stdout;
995 log_file = stderr;
998 log_file = fopen(optarg, "w");
999 if (log_file != NULL)
1000 setlinebuf(log_file);
1003 if (log_file == NULL)
1121 if (log_file != NULL)
1123 DNBLogSetLogCallback(FileLogCallback, log_file);
/external/wpa_supplicant_8/hostapd/
H A Dmain.c543 const char *log_file = NULL; local
585 log_file = optarg;
639 if (log_file)
640 wpa_debug_open_file(log_file);
755 if (log_file)
/external/fio/
H A Diolog.h178 extern void log_file(struct thread_data *, struct fio_file *, enum file_log_act);
/external/libvpx/libvpx/build/make/
H A Dconfigure.sh42 log_file(){ function
292 log_file ${TMP_C}
299 log_file ${TMP_CC}
306 log_file ${TMP_C}
373 log_file ${TMP_ASM}
376 log_file ${TMP_X}
/external/lldb/include/lldb/Core/
H A DDebugger.h255 EnableLog (const char *channel, const char **categories, const char *log_file, uint32_t log_options, Stream &error_stream);

Completed in 1418 milliseconds

12