HomeSort by relevance Sort by last modified time
    Searched refs:logfile (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/qemu/
qemu-log.h 5 extern FILE *logfile;
18 #define qemu_log_enabled() (logfile != NULL)
30 if (logfile) \
31 fprintf(logfile, ## __VA_ARGS__); \
37 if (logfile) \
38 vfprintf(logfile, fmt, va); \
45 fprintf(logfile, ## __VA_ARGS__); \
54 #define log_cpu_state(env, f) cpu_dump_state((env), logfile, fprintf, (f));
59 /* disas() and target_disas() to logfile: */
61 target_disas(logfile, (start), (len), (flags)
    [all...]
  /external/valgrind/main/nightly/bin/
nightly 22 logfile=$1
26 # Header in short logfile.
29 printf " $str ... " >> $logfile.short
31 # Header and command in verbose logfile
32 printf " $str ... " >> $logfile.verbose
33 echo "$*" >> $logfile.verbose
36 ("${ABT_EVAL}" "$*") >> $logfile.verbose 2>&1
39 # Write result to the short logfile
42 echo "done" >> $logfile.short
44 echo "failed" >> $logfile.shor
    [all...]
  /external/e2fsprogs/intl/
log.c 58 FILE *logfile; local
60 /* Can we reuse the last opened logfile? */
63 /* Close the last used logfile. */
74 /* Open the logfile. */
83 logfile = last_logfile;
85 fprintf (logfile, "domain ");
86 print_escaped (logfile, domainname);
87 fprintf (logfile, "\nmsgid ");
88 print_escaped (logfile, msgid1);
91 fprintf (logfile, "\nmsgid_plural ")
    [all...]
  /external/chromium/base/win/
event_trace_consumer.h 90 EVENT_TRACE_LOGFILE logfile = {}; local
91 logfile.LoggerName = const_cast<wchar_t*>(session_name);
92 logfile.LogFileMode = EVENT_TRACE_REAL_TIME_MODE;
93 logfile.BufferCallback = &ProcessBufferCallback;
94 logfile.EventCallback = &ProcessEventCallback;
95 logfile.Context = this;
96 TRACEHANDLE trace_handle = ::OpenTrace(&logfile);
107 EVENT_TRACE_LOGFILE logfile = {}; local
108 logfile.LogFileName = const_cast<wchar_t*>(file_name);
109 logfile.BufferCallback = &ProcessBufferCallback
    [all...]
  /external/chromium_org/base/win/
event_trace_consumer.h 89 EVENT_TRACE_LOGFILE logfile = {}; local
90 logfile.LoggerName = const_cast<wchar_t*>(session_name);
91 logfile.LogFileMode = EVENT_TRACE_REAL_TIME_MODE;
92 logfile.BufferCallback = &ProcessBufferCallback;
93 logfile.EventCallback = &ProcessEventCallback;
94 logfile.Context = this;
95 TRACEHANDLE trace_handle = ::OpenTrace(&logfile);
106 EVENT_TRACE_LOGFILE logfile = {}; local
107 logfile.LogFileName = const_cast<wchar_t*>(file_name);
108 logfile.BufferCallback = &ProcessBufferCallback
    [all...]
  /ndk/build/tools/
dev-rebuild-ndk.sh 143 logfile="$TOP/download-toolchain-sources.log"
144 rotate_log $logfile
146 > $logfile 2>&1
158 logfile="$TOP/build-platforms.log"
159 rotate_log $logfile
164 --fast-copy > $logfile 2>&1
165 fail_panic "build-platforms.sh failed. Logfile in $logfile"
167 logfile="$TOP/rebuild-all.log"
168 rotate_log $logfile
    [all...]
  /external/chromium_org/v8/tools/
process-heap-prof.py 55 logfile = open(filename, 'rb')
57 logreader = csv.reader(logfile)
83 logfile.close()
113 print "Missing logfile"
plot-timer-events 40 $d8_exec --nocrankshaft --prof --logfile $calibration_log \
48 $d8_exec --nocrankshaft --prof --logfile $calibration_log \
  /external/v8/tools/
process-heap-prof.py 55 logfile = open(filename, 'rb')
57 logreader = csv.reader(logfile)
83 logfile.close()
113 print "Missing logfile"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
stones.py 7 def main(logfile):
8 p = hotshot.Profile(logfile)
16 stats = hotshot.stats.load(logfile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
stones.py 7 def main(logfile):
8 p = hotshot.Profile(logfile)
16 stats = hotshot.stats.load(logfile)
  /external/ipsec-tools/src/racoon/
plog.c 79 static char *logfile = NULL; variable
108 if (logfile || f_foreground) {
167 if (logfile)
222 if (logfile) {
223 logp = log_open(250, logfile);
225 errx(1, "ERROR: failed to open log file %s.", logfile);
236 if (logfile != NULL)
237 racoon_free(logfile);
238 logfile = racoon_strdup(file);
239 STRDUP_FATAL(logfile);
    [all...]
  /external/chromium_org/build/android/pylib/gtest/
test_package_apk.py 66 def _WatchFifo(self, adb, timeout, logfile=None):
77 return pexpect.spawn('adb', args, timeout=timeout, logfile=logfile)
128 logfile = android_commands.NewLineNormalizer(sys.stdout)
129 return self._WatchFifo(adb, timeout=10, logfile=logfile)
test_package_exe.py 119 return pexpect.spawn(args[0], args[1:], logfile=sys.stdout)
  /external/chromium_org/courgette/
analyze_stress_test 16 # logfile that start with the token.
29 USAGE: $(basename ${0}) logfile
31 Analyze the logfile of a stress test and produce metrics.
  /external/chromium_org/third_party/pexpect/
fdpexpect.py 34 def __init__ (self, fd, args=[], timeout=30, maxread=2000, searchwindowsize=None, logfile=None):
56 spawn.__init__(self, None, args, timeout, maxread, searchwindowsize, logfile)
pexpect.py 152 extra_args=None, logfile=None, cwd=None, env=None):
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):
335 The logfile member turns on or off logging. All input and output will
336 be copied to the given file object. Set logfile to None to stop
337 logging. This is the default. Set logfile to sys.stdout to echo
338 everything to standard output. The logfile is flushed after each write
    [all...]
pxssh.py 90 def __init__ (self, timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=None):
92 spawn.__init__(self, None, timeout=timeout, maxread=maxread, searchwindowsize=searchwindowsize, logfile=logfile, cwd=cwd, env=env)
  /external/chromium_org/net/tools/testserver/
testserver_base.py 179 logfile = open(self.options.log_file, 'w')
180 sys.stderr = MultiplexerHack(sys.stderr, logfile)
182 sys.stdout = MultiplexerHack(sys.stdout, logfile)
184 sys.stdout = logfile
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 63 qw(-buildfile -debug -emacs -f -find -help -listener -logfile
  /external/chromium_org/chrome/browser/
crash_handler_host_linux.cc 405 FILE* logfile = fopen(log_filename.c_str(), "w"); local
406 CHECK(logfile);
407 fprintf(logfile, "%s", asan_report_str_);
408 fclose(logfile);
  /external/chromium_org/third_party/libxml/src/
runsuite.c 37 #define LOGFILE "runsuite.log"
38 static FILE *logfile = NULL; variable
180 if (logfile != NULL) {
181 fprintf(logfile, "\n------------\n");
183 vfprintf(logfile, msg, args);
185 fprintf(logfile, "%s", testErrors);
1065 logfile = fopen(LOGFILE, "w");
1066 if (logfile == NULL) {
1175 if (logfile != NULL
    [all...]
  /external/chromium_org/tools/
ipc_messages_log.py 10 e.g. logfile containing
154 parser = optparse.OptionParser('usage: %prog [LOGFILE...]')
  /external/v8/
Android.libv8.mk 70 $(SNAP_GEN): PRIVATE_CUSTOM_TOOL = $(MKSNAPSHOT) --logfile $(intermediates)/v8.log $(SNAP_GEN)
  /external/libvpx/libvpx/build/make/
configure.sh 30 echo "at the configure error log file ($logfile) to determine what"
38 echo "$@" >>$logfile
44 pr -n -t $1 >>$logfile
285 "$@" >>${logfile} 2>&1
488 enabled logging || logfile="$logging"
490 logfile=/dev/null
    [all...]

Completed in 770 milliseconds

1 2 3