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

1 2 3 4 5

  /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...]
  /toolchain/binutils/binutils-2.25/intl/
log.c 64 FILE *logfile; local
66 /* Can we reuse the last opened logfile? */
69 /* Close the last used logfile. */
80 /* Open the logfile. */
89 logfile = last_logfile;
91 fprintf (logfile, "domain ");
92 print_escaped (logfile, domainname);
93 fprintf (logfile, "\nmsgid ");
94 print_escaped (logfile, msgid1);
97 fprintf (logfile, "\nmsgid_plural ")
    [all...]
  /external/autotest/client/site_tests/platform_CheckErrorsInLog/
platform_CheckErrorsInLog.py 21 def search_log(self, logfile):
25 logfile: string, pathname of logfile to search.
31 f = open(logfile, 'r')
37 logging.error('%s found in %s' ,line, logfile)
48 logfile = os.path.join('/var/log', log)
49 if os.path.isfile(logfile):
50 errors += self.search_log(logfile)
52 logging.warning('%s does not exist' % logfile)
  /external/valgrind/nightly/bin/
nightly 30 logfile=$1
34 # Header in short logfile.
37 printf " $str ... " >> $logfile.short
39 # Header and command in verbose logfile
40 printf " $str ... " >> $logfile.verbose
41 echo "$*" >> $logfile.verbose
44 ("${ABT_EVAL}" "$*") >> $logfile.verbose 2>&1
47 # Write result to the short logfile
50 echo "done" >> $logfile.short
52 echo "failed" >> $logfile.shor
    [all...]
  /external/autotest/client/bin/
sysinfo.py 9 logfile = base_sysinfo.logfile variable
  /external/libchrome/base/win/
event_trace_consumer.h 91 EVENT_TRACE_LOGFILE logfile = {}; local
92 logfile.LoggerName = const_cast<wchar_t*>(session_name);
93 logfile.LogFileMode = EVENT_TRACE_REAL_TIME_MODE;
94 logfile.BufferCallback = &ProcessBufferCallback;
95 logfile.EventCallback = &ProcessEventCallback;
96 logfile.Context = this;
97 TRACEHANDLE trace_handle = ::OpenTrace(&logfile);
108 EVENT_TRACE_LOGFILE logfile = {}; local
109 logfile.LogFileName = const_cast<wchar_t*>(file_name);
110 logfile.BufferCallback = &ProcessBufferCallback
    [all...]
  /external/autotest/client/profilers/kvm_modload/
kvm_modload.py 34 self.logfile = open(os.path.join(test.profdir, "kvm_modload"), 'w')
35 self.logfile.write("Loaded KVM module with status %s.\n" %
37 self.log_lsmod(self.logfile)
42 self.logfile.write("Unloaded KVM module with status %s.\n" %
44 self.log_lsmod(self.logfile)
45 self.logfile.close()
  /external/curl/tests/
http2-server.pl 28 my $logfile = "log/http2.log";
57 elsif($ARGV[0] eq '--logfile') {
59 $logfile = $ARGV[1];
73 "--errorlog-file=$logfile";
rtspserver.pl 43 my $logfile; # rtsp server log file
57 elsif($ARGV[0] eq '--logfile') {
59 $logfile = $ARGV[1];
102 if(!$logfile) {
103 $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
106 $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
tftpserver.pl 43 my $logfile; # tftp server log file
58 elsif($ARGV[0] eq '--logfile') {
60 $logfile = $ARGV[1];
103 if(!$logfile) {
104 $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
107 $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
httpserver.pl 44 my $logfile; # http server log file
60 elsif($ARGV[0] eq '--logfile') {
62 $logfile = $ARGV[1];
121 if(!$logfile) {
122 $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
125 $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
  /external/curl/tests/libtest/
test613.pl 7 print "Usage: $0 prepare|postprocess dir [logfile]\n";
48 my $logfile = $ARGV[2];
57 if ($logfile) {
73 open(IN, "<$logfile") || die "$!";
93 my $newfile = $logfile . ".new";
98 unlink $logfile;
99 rename $newfile, $logfile;
  /external/autotest/client/profilers/cmdprofile/
cmdprofile.py 45 logfile = open(os.path.join(test.profdir, outputfile), 'a')
46 utils.run(cmd, stdout_tee=logfile, stderr_tee=logfile)
47 logfile.write('\n')
48 logfile.close()
  /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/gdb/darwin-x86/lib/python2.7/hotshot/
stones.py 7 def main(logfile):
8 p = hotshot.Profile(logfile)
16 stats = hotshot.stats.load(logfile)
  /prebuilts/gdb/linux-x86/lib/python2.7/hotshot/
stones.py 7 def main(logfile):
8 p = hotshot.Profile(logfile)
16 stats = hotshot.stats.load(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/autotest/client/profilers/perf/
perf.py 37 self.logfile = os.path.join(test.profdir, "perf")
39 (self.perf_bin, self.logfile))
59 self.logfile,
68 cmd = ("%s script -i %s" % (self.perf_bin, self.logfile,))
76 perf_log_size = os.stat(self.logfile)[stat.ST_SIZE]
78 self.logfile, perf_log_size)
79 os.unlink(self.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-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/test/functional/
test_proxies.py 19 LogFile "%(logfile)s"
42 self.logfile = tempfile.mktemp()
48 'logfile': self.logfile}
68 print open(self.logfile).read()
72 self.logfile,
84 lf = open(self.logfile).read()
  /external/autotest/client/profilers/cpistat/
cpistat.py 21 logfile = open(os.path.join(test.profdir, "cpistat"), 'w')
22 p = subprocess.Popen(cmd, stdout=logfile,
  /external/autotest/client/profilers/mpstat/
mpstat.py 18 logfile = open(os.path.join(test.profdir, "mpstat"), 'w')
19 p = subprocess.Popen(cmd, shell=True, stdout=logfile,
  /external/autotest/client/profilers/vmstat/
vmstat.py 20 logfile = open(os.path.join(test.profdir, "vmstat"), 'w')
21 p = subprocess.Popen(cmd, shell=True, stdout=logfile, \
  /external/autotest/client/tests/kernbench/
kernbench.py 53 logfile = os.path.join(self.debugdir, 'build_log')
55 self.kernel.build_timed(self.threads, output=logfile) # warmup run
57 if os.path.exists(logfile):
58 utils.system("gzip -9 '%s'" % logfile, ignore_status=True)

Completed in 614 milliseconds

1 2 3 4 5