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

1 23 4 5

  /external/autotest/client/common_lib/
pexpect.py 144 def run (command, timeout=-1, withexitstatus=False, events=None, extra_args=None, logfile=None, cwd=None, env=None):
219 child = spawn(command, maxread=2000, logfile=logfile, cwd=cwd, env=env)
221 child = spawn(command, timeout=timeout, maxread=2000, logfile=logfile, cwd=cwd, env=env)
267 def __init__(self, command, args=[], timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=None):
319 The logfile member turns on or off logging. All input and output will
320 be copied to the given file object. Set logfile to None to stop
321 logging. This is the default. Set logfile to sys.stdout to echo
322 everything to standard output. The logfile is flushed after each write
    [all...]
pxssh.py 73 def __init__ (self, timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=None):
74 spawn.__init__(self, None, timeout=timeout, maxread=maxread, searchwindowsize=searchwindowsize, logfile=logfile, cwd=cwd, env=env)
  /external/autotest/site_utils/
lxc_cleanup.py 155 parser.add_argument('-l', '--logfile', type=str,
167 if options.logfile:
169 file_path=os.path.abspath(options.logfile),
  /external/autotest/client/tests/dbt2/
dbt2.py 46 logfile = self.resultsdir + '/dbt2.log'
  /external/autotest/server/cros/faft/
rpc_proxy.py 92 logfile="%s.%s" % (self._client_config.rpc_logfile,
  /external/chromium-trace/catapult/devil/devil/utils/
cmd_helper.py 246 logfile=None):
257 logfile: Optional file-like object that will receive output from the
269 if logfile:
270 logfile.write(data)
  /external/v8/build/android/pylib/perf/
test_runner.py 370 logfile = sys.stdout
375 logfile = _HeartBeatLogger()
381 full_cmd, timeout, cwd=cwd, shell=True, logfile=logfile)
392 logfile.stop()
  /external/webrtc/third_party/gtest-parallel/
gtest-parallel 157 def logfile(self, job_id, name):
182 def logfile(self, job_id, name):
342 for logfile in os.listdir(options.output_dir):
343 os.remove(os.path.join(options.output_dir, logfile))
361 logger.logfile(job_id, log.name)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds/
__init__.py 35 from boto.rds.logfile import LogFile, LogFileObject
    [all...]
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 25 logfile = sys.stdin variable
426 for line in logfile:
472 parser.add_argument('-l','--logfile', default=sys.stdin,
485 if args.logfile:
486 logfile = args.logfile
488 logfile = sys.stdin
  /external/libvncserver/client_examples/
SDLvncviewer.c 329 FILE* logfile; local
344 logfile=fopen(logfile_str,"a");
350 fprintf(logfile,buf);
352 vfprintf(logfile, format, args);
353 fflush(logfile);
356 fclose(logfile);
  /external/toybox/toys/pending/
crond.c 13 usage: crond [-fbS] [-l N] [-d N] [-L LOGFILE] [-c DIR]
31 char *logfile;
80 if (!TT.flagd && TT.logfile) {
81 int fd = open(TT.logfile, O_WRONLY | O_CREAT | O_APPEND, 0666);
85 } else if (fd < 0) perror_msg("'%s", TT.logfile);
90 if (TT.flagd || TT.logfile) {
645 if (!TT.flagd && !TT.logfile)
  /external/autotest/contrib/
log_distiller.py 22 # logfile name format: scheduler.log.2014-02-14-18.10.56
364 logfile = sys.argv[2]
366 logfile = LOGFILE
369 log_crawler = SchedulerLogCrawler(logfile, job_id=job['id'])
  /external/dhcpcd-6.8.2/
dhcpcd.h 90 char *logfile; member in struct:dhcpcd_ctx
  /external/libxml2/
runsuite.c 34 #define LOGFILE "runsuite.log"
35 static FILE *logfile = NULL; variable
168 if (logfile != NULL) {
169 fprintf(logfile, "\n------------\n");
171 vfprintf(logfile, msg, args);
173 fprintf(logfile, "%s", testErrors);
1053 logfile = fopen(LOGFILE, "w");
1054 if (logfile == NULL) {
1163 if (logfile != NULL
    [all...]
  /external/autotest/client/bin/
kernel.py 192 self.logfile = open(logpath, 'w+')
207 self.logfile.write('BASE: %s\n' % base_tree)
311 self.logfile.write(log)
350 def build(self, make_opts = '', logfile = '', extraversion='autotest'):
357 if logfile == '':
358 logfile = os.path.join(self.log_dir, 'kernel_build')
378 self.logfile.write('BUILD VERSION: %s\n' % kernel_version)
693 nor would we want to. Same for logfile (fd's).
697 temp.logfile = None
kernel_unittest.py 180 self.logfile = self.god.create_mock_class(file, "file")
181 kernel.open.expect_call(logpath, 'w+').and_return(self.logfile)
183 self.logfile.write.expect_call('BASE: %s\n' % self.base_tree)
370 self.logfile.write.expect_call(log)
377 self.logfile.write.expect_call(log)
388 self.logfile.write.expect_call(log)
454 logfile = os.path.join(self.log_dir, 'kernel_build')
467 self.logfile.write.expect_call('BUILD VERSION: %s\n' % kernel_version)
site_sysinfo.py 18 logfile = base_sysinfo.logfile variable
283 logfile(os.path.join(constants.USER_DATA_DIR,
  /external/autotest/client/tests/lsb_dtk/
lsb_dtk.py 175 logfile = os.path.join(self.resultsdir, 'lsb.log')
176 log_arg = '-r %s' % (logfile)
  /external/curl/lib/
memdebug.h 33 #define logfile curl_debuglogfile macro
35 extern FILE *logfile;
  /external/e2fsprogs/e2fsck/
Android.mk 81 logfile.c \
  /external/curl/tests/
runtests.pl 200 my $valgrind_logfile="--logfile";
    [all...]
  /external/opencv3/modules/ts/misc/
run.py 655 logfile = self.getLogName(path, timestamp)
660 args.append("--gtest_output=xml:" + logfile)
662 logfile = userlog[0][userlog[0].find(":")+1:]
757 hostlogpath = os.path.join(workingDir, logfile)
758 output = Popen(self.adb + ["pull", andoidcwd + logfile, hostlogpath], stdout=_stdout, stderr=PIPE).wait()
763 Popen(self.adb + ["shell", "rm " + andoidcwd + logfile], stdout=PIPE, stderr=PIPE).wait()
    [all...]
  /external/libvpx/libvpx/build/make/
configure.sh 29 echo "at the configure error log file ($logfile) to determine what"
36 echo "$@" >>$logfile
41 cat -n $1 >>$logfile
277 "$@" >>${logfile} 2>&1
501 enabled logging || logfile="$logging"
503 logfile=/dev/null
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
configure.sh 30 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
    [all...]

Completed in 1093 milliseconds

1 23 4 5