Home
last modified time | relevance | path

Searched refs:logfile (Results 1 – 25 of 63) sorted by relevance

123

/external/valgrind/main/nightly/bin/
Dnightly30 logfile=$1
37 printf " $str ... " >> $logfile.short
40 printf " $str ... " >> $logfile.verbose
41 echo "$*" >> $logfile.verbose
44 ("${ABT_EVAL}" "$*") >> $logfile.verbose 2>&1
50 echo "done" >> $logfile.short
52 echo "failed" >> $logfile.short
144 for logfile in old new ; do
148 echo > $logfile.$ext
152 if [ $logfile = "old" ] ; then
[all …]
/external/e2fsprogs/intl/
Dlog.c58 FILE *logfile; in _nl_log_untranslated() local
83 logfile = last_logfile; in _nl_log_untranslated()
85 fprintf (logfile, "domain "); in _nl_log_untranslated()
86 print_escaped (logfile, domainname); in _nl_log_untranslated()
87 fprintf (logfile, "\nmsgid "); in _nl_log_untranslated()
88 print_escaped (logfile, msgid1); in _nl_log_untranslated()
91 fprintf (logfile, "\nmsgid_plural "); in _nl_log_untranslated()
92 print_escaped (logfile, msgid2); in _nl_log_untranslated()
93 fprintf (logfile, "\nmsgstr[0] \"\"\n"); in _nl_log_untranslated()
96 fprintf (logfile, "\nmsgstr \"\"\n"); in _nl_log_untranslated()
[all …]
/external/chromium_org/base/win/
Devent_trace_consumer.h89 EVENT_TRACE_LOGFILE logfile = {}; in OpenRealtimeSession() local
90 logfile.LoggerName = const_cast<wchar_t*>(session_name); in OpenRealtimeSession()
91 logfile.LogFileMode = EVENT_TRACE_REAL_TIME_MODE; in OpenRealtimeSession()
92 logfile.BufferCallback = &ProcessBufferCallback; in OpenRealtimeSession()
93 logfile.EventCallback = &ProcessEventCallback; in OpenRealtimeSession()
94 logfile.Context = this; in OpenRealtimeSession()
95 TRACEHANDLE trace_handle = ::OpenTrace(&logfile); in OpenRealtimeSession()
106 EVENT_TRACE_LOGFILE logfile = {}; in OpenFileSession() local
107 logfile.LogFileName = const_cast<wchar_t*>(file_name); in OpenFileSession()
108 logfile.BufferCallback = &ProcessBufferCallback; in OpenFileSession()
[all …]
/external/ipsec-tools/src/racoon/
Dplog.c79 static char *logfile = NULL; variable
108 if (logfile || f_foreground) {
167 if (logfile) in plogv()
222 if (logfile) { in ploginit()
223 logp = log_open(250, logfile); in ploginit()
225 errx(1, "ERROR: failed to open log file %s.", logfile); in ploginit()
236 if (logfile != NULL)
237 racoon_free(logfile);
238 logfile = racoon_strdup(file);
239 STRDUP_FATAL(logfile);
/external/ltrace/testsuite/lib/
Dltrace.exp556 set logfile [ltraceSource ltrace {}]
562 set command "exec env LD_LIBRARY_PATH=$LdPath $LTRACE -o $logfile $args"
570 return $logfile
614 proc Grep {logfile re} {
616 set fp [open $logfile]
645 proc ltraceMatch1 {logfile pattern {op ==} {expect 1}} {
646 set count [Grep $logfile $pattern]
647 set msgMain "$pattern appears in $logfile $count times"
674 proc ltraceMatch {logfile patterns} {
676 eval ltraceMatch1 [linsert $pat 0 $logfile]
/external/chromium_org/build/android/pylib/gtest/
Dtest_package_apk.py61 def _WatchFifo(self, device, timeout, logfile=None): argument
72 return pexpect.spawn('adb', args, timeout=timeout, logfile=logfile)
129 logfile = android_commands.NewLineNormalizer(sys.stdout)
130 return self._WatchFifo(device, timeout=10, logfile=logfile)
/external/chromium_org/v8/tools/
Dprocess-heap-prof.py55 logfile = open(filename, 'rb')
57 logreader = csv.reader(logfile)
83 logfile.close()
Dplot-timer-events54 $d8_exec --nocrankshaft --prof --logfile $calibration_log \
62 $d8_exec --nocrankshaft --prof --logfile $calibration_log \
/external/chromium_org/third_party/pexpect/
Dpexpect.py152 extra_args=None, logfile=None, cwd=None, env=None): argument
229 child = spawn(command, maxread=2000, logfile=logfile, cwd=cwd, env=env)
231 child = spawn(command, timeout=timeout, maxread=2000, logfile=logfile,
283 searchwindowsize=None, logfile=None, cwd=None, env=None): argument
417 self.logfile = logfile
501 s.append('logfile: ' + str(self.logfile))
884 if self.logfile is not None:
885 self.logfile.write(s)
886 self.logfile.flush()
1000 if self.logfile is not None:
[all …]
Dfdpexpect.py34 def __init__ (self, fd, args=[], timeout=30, maxread=2000, searchwindowsize=None, logfile=None): argument
56 spawn.__init__(self, None, args, timeout, maxread, searchwindowsize, logfile)
Dpxssh.py90 …def __init__ (self, timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=N… argument
92 …timeout=timeout, maxread=maxread, searchwindowsize=searchwindowsize, logfile=logfile, cwd=cwd, env…
/external/lldb/test/pexpect-2.4/
Dpexpect.py145 def run (command, timeout=-1, withexitstatus=False, events=None, extra_args=None, logfile=None, cwd… argument
220 child = spawn(command, maxread=2000, logfile=logfile, cwd=cwd, env=env)
222 child = spawn(command, timeout=timeout, maxread=2000, logfile=logfile, cwd=cwd, env=env)
268 …def __init__(self, command, args=[], timeout=30, maxread=2000, searchwindowsize=None, logfile=None… argument
400 self.logfile = logfile
473 s.append('logfile: ' + str(self.logfile))
841 if self.logfile is not None:
842 self.logfile.write (s)
843 self.logfile.flush()
952 if self.logfile is not None:
[all …]
Dfdpexpect.py18 def __init__ (self, fd, args=[], timeout=30, maxread=2000, searchwindowsize=None, logfile=None): argument
40 spawn.__init__(self, None, args, timeout, maxread, searchwindowsize, logfile)
Dpxssh.py73 …def __init__ (self, timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=N… argument
74 …timeout=timeout, maxread=maxread, searchwindowsize=searchwindowsize, logfile=logfile, cwd=cwd, env…
/external/chromium_org/build/android/pylib/perf/
Dtest_runner.py232 logfile = sys.stdout
236 logfile = _HeartBeatLogger()
242 full_cmd, timeout, cwd=cwd, shell=True, logfile=logfile)
248 logfile.stop()
/external/chromium_org/net/tools/testserver/
Dtestserver_base.py187 logfile = open(self.options.log_file, 'w')
188 sys.stderr = MultiplexerHack(sys.stderr, logfile)
190 sys.stdout = MultiplexerHack(sys.stdout, logfile)
192 sys.stdout = logfile
/external/chromium_org/build/android/pylib/
Dcmd_helper.py116 logfile=None): argument
154 if logfile:
155 logfile.write(data)
/external/lldb/source/Expression/
DClangUtilityFunction.cpp143 StreamFile logfile ("/tmp/exprs.txt", "a"); in Install()
144 logfile.Printf ("0x%16.16" PRIx64 ": func = %s, source =\n%s\n", in Install()
/external/chromium_org/tools/valgrind/asan/third_party/
Dasan_symbolize.py27 logfile = sys.stdin variable
381 line = logfile.readline()
436 if args.logfile:
437 logfile = args.logfile variable
439 logfile = sys.stdin variable
/external/chromium_org/courgette/
Danalyze_stress_test35 USAGE: $(basename ${0}) logfile
37 Analyze the logfile of a stress test and produce metrics.
/external/ltrace/testsuite/ltrace.main/
Dsystem_calls.exp71 proc Calls {logfile} { argument
72 set fp [open $logfile]
/external/chromium_org/third_party/libxml/src/
Drunsuite.c38 static FILE *logfile = NULL; variable
180 if (logfile != NULL) { in test_log()
181 fprintf(logfile, "\n------------\n"); in test_log()
183 vfprintf(logfile, msg, args); in test_log()
185 fprintf(logfile, "%s", testErrors); in test_log()
1065 logfile = fopen(LOGFILE, "w"); in main()
1066 if (logfile == NULL) { in main()
1175 if (logfile != NULL) in main()
1176 fclose(logfile); in main()
/external/libvpx/libvpx/build/make/
Dconfigure.sh30 echo "at the configure error log file ($logfile) to determine what"
38 echo "$@" >>$logfile
44 cat -n $1 >>$logfile
286 "$@" >>${logfile} 2>&1
502 enabled logging || logfile="$logging"
504 logfile=/dev/null
1322 logfile="config.log"
1328 echo "# ${self} $@" >> ${logfile}
1330 echo "# ${self} $@" > ${logfile}
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
Dconfigure.sh30 echo "at the configure error log file ($logfile) to determine what"
38 echo "$@" >>$logfile
44 cat -n $1 >>$logfile
286 "$@" >>${logfile} 2>&1
505 enabled logging || logfile="$logging"
507 logfile=/dev/null
1386 logfile="config.log"
1392 echo "# ${self} $@" >> ${logfile}
1394 echo "# ${self} $@" > ${logfile}
/external/chromium_org/tools/valgrind/asan/
Dasan_symbolize.py53 asan_symbolize.logfile = sys.stdin

123