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

12 3 4 5

  /external/curl/tests/
secureserver.pl 63 my $logfile; # stunnel log file
162 elsif($ARGV[0] eq '--logfile') {
164 $logfile = "$path/". $ARGV[1];
180 if(!$logfile) {
181 $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
249 $cmd .= ">$logfile 2>&1";
255 print "log file: $logfile\n";
268 $cmd .= ">$logfile 2>&1";
284 print STUNCONF "output = $logfile\n";
313 print "output = $logfile\n"
    [all...]
  /external/autotest/client/profilers/cros_perf/
cros_perf.py 34 logfile = os.path.join(test.profdir, 'perf.data')
35 self.options += ' -o %s' % logfile
  /external/autotest/client/profilers/iostat/
iostat.py 22 logfile = open(os.path.join(test.profdir, filename), 'w')
23 p = subprocess.Popen(cmd, shell=True, stdout=logfile,
  /external/autotest/client/profilers/kvm_stat/
kvm_stat.py 55 logfile = open(os.path.join(test.profdir, "kvm_stat"), 'w')
56 p = subprocess.Popen(cmd, shell=True, stdout=logfile,
  /external/autotest/client/profilers/sar/
sar.py 54 logfile = open(os.path.join(test.profdir, "sar"), 'w')
58 self.sar_process = subprocess.Popen(cmd, shell=True, stdout=logfile,
  /external/autotest/client/tests/systemtap/
systemtap.py 73 logfile = 'systemtap.log.%d' % self.iteration
76 logfile = 'systemtap.log.profile'
79 self.logfile = os.path.join(self.resultsdir, logfile)
82 shutil.move(log, self.logfile)
  /external/autotest/utils/
service_helper.py 19 def start_service(cmd, pidfile, logfile=os.devnull, chdir=None):
25 @param logfile: file to write stderr/stdout to
28 logfh = open(logfile, 'a')
93 parser.add_option('-l', '--logfile', action='store',
126 start_service(args, options.pidfile, options.logfile, options.chdir)
  /external/autotest/client/tests/ebizzy/
ebizzy.py 28 logfile = os.path.join(self.resultsdir, 'ebizzy.log')
  /external/autotest/site_utils/bootperf-bin/
bootperf 160 local logfile=$(pwd)/$iter_rundir/$RUNDIR_LOG
165 echo "$(date '+%T') - $logfile"
168 "$remote" $TEST >$logfile 2>&1
171 error "Check $logfile for output from the test run,"
  /external/ltrace/testsuite/lib/
ltrace.exp 539 # ARGS. A logfile redirection is automatically ordered by
546 # Returns name of logfile. The "exec" command that it uses
556 set logfile [ltraceSource ltrace {}]
562 set command "exec env LD_LIBRARY_PATH=$LdPath $LTRACE -o $logfile $args"
570 return $logfile
607 # logfile File to search through.
614 proc Grep {logfile re} {
616 set fp [open $logfile]
628 # Look for a pattern in a given logfile, comparing number of
632 # logfile The name of file where to look for patterns
    [all...]
  /external/curl/lib/
memdebug.c 107 #define logfile curl_debuglogfile macro
115 if(!logfile) {
117 logfile = fopen(logname, FOPEN_WRITETEXT);
119 logfile = stderr;
122 setbuf(logfile, (char *)NULL);
151 fflush(logfile); /* because it might crash now */
468 if(!logfile)
483 fwrite(buf, 1, nchars, logfile);
  /external/toybox/toys/pending/
syslogd.c 14 usage: syslogd [-a socket] [-O logfile] [-f config file] [-m interval]
48 struct logfile { struct
49 struct logfile *next;
61 char *logfile;
69 struct logfile *lfiles; // list of write logfiles
96 * recurses the logfile list and resolves config
99 static int resolve_config(struct logfile *file, char *config)
155 struct logfile *file;
166 file = xzalloc(sizeof(struct logfile));
178 file = xzalloc(sizeof(struct logfile));
    [all...]
  /external/libxml2/
runxmlconf.c 31 #define LOGFILE "runxmlconf.log"
32 static FILE *logfile = NULL; variable
113 if (logfile != NULL) {
114 fprintf(logfile, "\n------------\n");
116 vfprintf(logfile, msg, args);
118 fprintf(logfile, "%s", testErrors);
414 xmlMemDisplayLast(logfile, final - mem);
555 logfile = fopen(LOGFILE, "w");
556 if (logfile == NULL)
    [all...]
  /external/autotest/client/bin/
base_sysinfo.py 52 class logfile(loggable): class in inherits:loggable
57 super(logfile, self).__init__(logf, log_in_keyval)
62 r = "sysinfo.logfile(%r, %r, %r)"
68 if isinstance(other, logfile):
162 self.test_loggables.add(logfile(filename))
169 self.boot_loggables.add(logfile(filename))
178 logfile(fname, logf=os.path.basename(fname) + '.before'))
187 logfile(fname, logf=os.path.basename(fname) + '.after'))
198 self.boot_loggables.add(logfile("/proc/cmdline",
202 self.boot_loggables.add(logfile('/proc/mounts', logf='proc_mounts')
    [all...]
xen.py 13 self.logfile.write('%s\n' % msg)
28 def build(self, make_opts = '', logfile = '', extraversion='autotest'):
38 if logfile == '':
39 logfile = os.path.join(self.log_dir, 'xen_build')
42 self.job.logging.tee_redirect_debug_dir(self.log_dir, log_name=logfile)
  /external/autotest/client/tests/kvmtest/
kvmtest.py 39 logfile = replaydir + "/%s.log" %(os.path.basename(d))
42 rv = utils.system("kvm-test-replay > %s" %(logfile), 1)
46 screenshot = self.__get_expected_file(logfile)
74 def __get_expected_file(self, logfile):
75 # pull out screeshot name from logfile
77 open(logfile, 'r').readlines())\
  /external/autotest/server/hosts/
rpc_server_tracker.py 88 logfile=None):
126 @param logfile Logfile to send output when running
134 if logfile:
135 remote_cmd = '%s > %s 2>&1' % (command, logfile)
  /external/autotest/client/tests/ltp/
ltp.py 72 logfile = os.path.join(self.resultsdir, 'ltp.log')
76 args2 = '-p -l %s -C %s -d %s -o %s -S %s' % (logfile, failcmdfile,
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_event.py 11 logfile. These resulting logfiles can be viewed with either Chrome's
43 Multiple processes can safely output into a single trace_event logfile. If you
45 logfile. Use of the multiprocessing module will work as well. In both cases,
71 def trace_enable(logfile):
72 return trace_event_impl.trace_enable(logfile)
168 None: a logfile is opened based on sys[argv], namely
171 string: a logfile of the given name is opened.
  /external/autotest/client/tests/sparse/
sparse.py 31 kernel.build(make_opts = 'C=1', logfile = results)
  /external/autotest/site_utils/
abort_suite.py 91 utils.setup_logging(logfile=log_name, prefix=True)
  /external/dhcpcd-6.8.2/
common.c 147 if (ctx->logfile) {
153 ctx->log_fd = open(ctx->logfile, O_WRONLY | f, 0644);
155 warn("open: %s", ctx->logfile);
160 warn("fcntl: %s", ctx->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/ltrace/testsuite/ltrace.main/
system_calls.exp 71 proc Calls {logfile} {
72 set fp [open $logfile]
  /external/v8/tools/
plot-timer-events 54 $d8_exec --nocrankshaft --prof --logfile $calibration_log \
62 $d8_exec --nocrankshaft --prof --logfile $calibration_log \

Completed in 758 milliseconds

12 3 4 5