Home
last modified time | relevance | path

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

1234

/third_party/ntfs-3g/ntfsprogs/
Dntfsdump_logfile.c94 static int logfile_close(logfile_file *logfile) in logfile_close() argument
96 if (logfile->is_volume) { in logfile_close()
97 if (logfile->na) in logfile_close()
98 ntfs_attr_close(logfile->na); in logfile_close()
99 if (logfile->ni && ntfs_inode_close(logfile->ni)) in logfile_close()
102 if (ntfs_umount(logfile->vol, 0)) in logfile_close()
104 logfile->filename); in logfile_close()
106 if (close(logfile->fd)) in logfile_close()
108 logfile->filename); in logfile_close()
193 logfile_file *logfile) in logfile_open() argument
[all …]
/third_party/ffmpeg/tests/
Dcopycooker.sh8 logfile="$datadir/copy.regression"
12 rm -f $logfile
14 echo ---------------- >> $logfile
15 echo $i >> $logfile
18 cmp first.nut second.nut >> $logfile
19 md5sum first.nut >> $logfile
22 if diff -u -w "$reffile" "$logfile" ; then
/third_party/curl/tests/libtest/
Dtest613.pl75 my $logfile = $ARGV[2];
84 if ($logfile && -s $logfile) {
100 open(IN, "<$logfile") || die "$!";
134 my $newfile = $logfile . ".new";
139 unlink $logfile;
140 rename $newfile, $logfile;
/third_party/node/deps/npm/node_modules/@npmcli/arborist/bin/lib/
Doptions.js19 logfile: String, property
68 ({ logfile, ...o }) => { property
71 if (logfile === 'true' || logfile === '') {
72 logfile = `arb-log-${new Date().toISOString().replace(/[.:]/g, '_')}.log`
75 if (logfile) {
76 o.logfile = cleanPath(logfile)
Dlogging.js70 if (options.logfile) {
71 log.silly('logfile', options.logfile)
72 fs.mkdirSync(dirname(options.logfile), { recursive: true })
73 const fd = fs.openSync(options.logfile, 'a')
/third_party/ltp/pan/
Dltp-pan.c102 FILE * logfile, int no_kmsg);
108 int keep_active, FILE * logfile, FILE * failcmdfile,
166 FILE *logfile = NULL; in main() local
337 logfile = stdout; in main()
339 if ((logfile = fopen(logfilename, "a+e")) == NULL) { in main()
352 fprintf(logfile, "startup='%s'\n", s); in main()
354 fprintf(logfile, "Test Start Time: %s\n", s); in main()
355 fprintf(logfile, in main()
357 fprintf(logfile, ResultFmt" %-10.10s\n", in main()
359 fprintf(logfile, ResultFmt" %-10.10s\n", in main()
[all …]
/third_party/curl/tests/
Dsecureserver.pl67 my $logfile; # stunnel log file
164 $logfile = "$path/". $ARGV[1];
192 if(!$logfile) {
193 $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
261 $cmd .= ">$logfile 2>&1";
267 print "log file: $logfile\n";
285 $cmd .= ">$logfile 2>&1";
301 print $stunconf "output = $logfile\n";
330 print "output = $logfile\n";
Drtspserver.pl50 my $logfile; # rtsp server log file
72 $logfile = $ARGV[1];
125 if(!$logfile) {
126 $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
131 "--logfile \"$logfile\" ".
Dtftpserver.pl50 my $logfile;
73 $logfile = $ARGV[1];
122 if(!$logfile) {
123 $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
128 "--logfile \"$logfile\" ".
Dhttp-server.pl53 my $logfile; # log file
86 $logfile = $ARGV[1];
170 if(!$logfile) {
171 $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
176 "--logfile \"$logfile\" ".
Dservers.pm1151 my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1158 $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1233 my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1237 $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1294 my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1298 $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1361 my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1365 $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1438 my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1449 my $cmd = "$httptlssrv $allflags > $logfile 2>&1";
[all …]
Dhttp3-server.pl35 my $logfile = "$logdir/http3.log";
82 $logfile = $ARGV[1];
115 "--errorlog-file=$logfile ".
Dhttp2-server.pl34 my $logfile = "$logdir/http2.log";
82 $logfile = $ARGV[1];
116 "--errorlog-file=$logfile ".
/third_party/python/Tools/c-analyzer/c_common/
Dlogging.py13 logfile=None, argument
23 if logfile:
24 handler = logging.FileHandler(logfile)
36 logfile=logfile,
/third_party/toybox/toys/pending/
Dsyslogd.c47 struct logfile { struct
48 struct logfile *next; argument
60 char *logfile; argument
68 struct logfile *lfiles; // list of write logfiles
98 static int resolve_config(struct logfile *file, char *config) in resolve_config()
154 struct logfile *file; in parse_config_file()
165 file = xzalloc(sizeof(struct logfile)); in parse_config_file()
177 file = xzalloc(sizeof(struct logfile)); in parse_config_file()
209 file = xzalloc(sizeof(struct logfile)); in parse_config_file()
226 file = xzalloc(sizeof(struct logfile)); in parse_config_file()
[all …]
/third_party/node/tools/
Dtest-npm-package.js39 function runNPMPackageTests({ srcDir, install, rebuild, testArgs, logfile }) { field
98 if (logfile) {
99 const logStream = createWriteStream(logfile);
113 let logfile = null;
128 logfile = path.resolve(projectDir, arg.slice('--logfile='.length));
136 return { srcDir, install, rebuild, testArgs, logfile };
/third_party/ltp/testcases/kernel/sched/sched_stress/
Dsched.c45 extern FILE *logfile;
63 if ((logfile = fopen(filename, "a")) == (FILE *) NULL)
78 fprintf(logfile, args);
79 fflush(logfile);
Dsched_tc4.c100 char *logfile = DEFAULT_LOGFILE; variable
127 printf("\tlogfile: %s\n", logfile); in main()
156 if ((statfile = fopen(logfile, "w")) == NULL) in main()
263 logfile = optarg; in parse_args()
Dsched_tc5.c96 char *logfile = DEFAULT_LOGFILE; variable
124 printf("\tlogfile: %s\n", logfile); in main()
154 if ((statfile = fopen(logfile, "w")) == NULL) in main()
266 logfile = optarg; in parse_args()
Dsched_tc6.c116 char *logfile = DEFAULT_LOGFILE; variable
159 printf("\tlogfile: %s\n", logfile); in main()
204 if ((statfile = fopen(logfile, "w")) == NULL) in main()
513 logfile = optarg; in parse_args()
/third_party/ltp/testcases/open_posix_testsuite/scripts/
Dgenerate-makefiles.sh118 LOGFILE?= logfile
178 rm -f \$(MAKE_TARGETS) logfile* run.sh *.core
244 \$(v)if $COMPILE_STR > logfile.\$\$\$\$ 2>&1; then \\
245 cat logfile.\$\$\$\$; \\
249 cat logfile.\$\$\$\$; \\
251 (echo "\$(subdir)/$test_name compile FAILED; SKIPPING"; cat logfile.\$\$\$\$) >> \$(LOGFILE); \\
253 rm -f logfile.\$\$\$\$
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/examples/
Dnegate.js35 const logfile = values.logfile ?? 'default.log'; constant
37 console.log({ logfile, color }); property
/third_party/node/test/parallel/
Dtest-tick-processor-arguments.js19 const logfile = files.filter((name) => /\.log$/.test(name))[0]; constant
20 assert(logfile);
28 [ '--prof-process', '--preprocess', logfile ],
/third_party/node/deps/npm/tap-snapshots/test/lib/utils/
Dexit-handler.js.test.cjs18 XX verbose logfile logs-max:10 dir:{CWD}/cache/_logs/{DATE}-
19 XX verbose logfile {CWD}/cache/_logs/{DATE}-debug-0.log
48 verbose logfile logs-max:10 dir:{CWD}/cache/_logs/{DATE}-
49 verbose logfile {CWD}/cache/_logs/{DATE}-debug-0.log
66 silly logfile done cleaning log files
/third_party/ltp/testscripts/
Dltp-aiodio.sh234 ${LTPROOT}/bin/ltp-pan -e -S -a ltpaiostresspart1 -n ltp-aiostresspart1 -l ltpaiostress.logfile -o …
246 ${LTPROOT}/bin/ltp-pan -e -S -a ltpaiostresspart2 -n ltp-aiostresspart2 -l ltpaiostress.logfile -o …
261 ${LTPROOT}/bin/ltp-pan -e -S -a ltpaiodiopart1 -n ltp-aiodiopart1 -l ltpaiodio1.logfile -o ltpaiodi…
271 ${LTPROOT}/bin/ltp-pan -e -S -a ltpaiodiopart2 -n ltp-aiodiopart2 -l ltpaiodio2.logfile -o ltpaiodi…
283 ${LTPROOT}/bin/ltp-pan -e -S -a ltpaiodiopart3 -n ltp-aiodiopart3 -l ltpaiodio3.logfile -o ltpaiodi…
301 ${LTPROOT}/bin/ltp-pan -e -S -a ltpaiodiopart4 -n ltp-aiodiopart4 -l ltpaiodio4.logfile -o ltpaiodi…

1234