Searched refs:tmpfile (Results 51 - 75 of 81) sorted by relevance

1234

/freebsd-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcstdio.inc50 using ::tmpfile;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dzfs_receive_005_neg.ksh93 log_must touch $ZFSROOT/$rst_root/$TESTFS/tmpfile
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zfs_receive/
H A Dzfs_receive_005_neg.ksh104 log_must $TOUCH $ZFSROOT/$rst_root/$TESTFS/tmpfile
/freebsd-current/tests/sys/fs/fusefs/
H A Drename.cc44 char tmpfile[80] = "/tmp/fuse.rename.XXXXXX"; member in class:Rename
49 unlink(tmpfile);
173 tmpfd = mkstemp(tmpfile);
178 ASSERT_NE(0, rename(tmpfile, FULLB));
181 ASSERT_NE(0, rename(FULLB, tmpfile));
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcstdio.inc50 using std::tmpfile;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/
H A Dxattr_compat.ksh56 TMPFILE=$TEST_BASE_DIR/tmpfile.$$
/freebsd-current/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dbasic.t11 my $tmpfile = File::Temp->new;
24 my $TEMPFILE = $tmpfile->filename;
/freebsd-current/contrib/byacc/test/
H A Drun_test.sh30 < "$CMP" >"$tmpfile" \
31 && mv "$tmpfile" "$CMP"
128 tmpfile=temp$$
/freebsd-current/sbin/gvinum/
H A Dgvinum.c186 char original[BUFSIZ], tmpfile[20], *token[GV_MAXARGS]; local
206 snprintf(tmpfile, sizeof(tmpfile), "/tmp/gvinum.XXXXXX");
208 if ((fd = mkstemp(tmpfile)) == -1) {
213 warn("can't open '%s' for writing", tmpfile);
224 tmpfile);
231 if ((tmp = fopen(tmpfile, "r")) == NULL) {
232 warn("can't open '%s' for reading", tmpfile);
391 unlink(tmpfile);
/freebsd-current/contrib/ntp/scripts/monitoring/
H A Dntploopwatch187 $tmpfile = "/tmp/ntpstat.$$";
209 unlink($tmpfile);
223 unlink($tmpfile);
310 ($c eq 'exit') && (unlink($tmpfile),die("$0: exit by config request\n"));
508 ($doplot .= sprintf($fmt,$c,$tmpfile,2,
515 ($doplot .= sprintf($fmt,$c,$tmpfile,4,
528 ($doplot .= sprintf($fmt,$c,$tmpfile,3,
1452 unlink($tmpfile);
1456 @filepos = &genfile($samples,$srcprefix,$tmpfile,$lo,$lf,@filepos);
1479 unlink($tmpfile);
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/
H A Dredacted.kshlib223 typeset tmpfile="$tmpdir/get_file.out"
233 log_must eval "get_diff $file1 $file2 >$tmpfile"
234 typeset range="$(<$tmpfile)"
/freebsd-current/lib/libc/stdio/
H A DMakefile.inc21 tempnam.c tmpfile.c \
132 tmpnam.3 tmpfile.3
/freebsd-current/contrib/libcbor/test/
H A Dpretty_printer_test.c19 FILE *outfile = tmpfile();
/freebsd-current/tests/sys/cddl/zfs/include/
H A Dlibtest.kshlib1661 typeset tmpfile=$TMPDIR/pool_status.${TESTCASE_ID}
1662 $ZPOOL status -x $pool > ${tmpfile}
1663 echo $tmpfile
1727 typeset tmpfile=$(pool_error_file $pool)
1729 cat $tmpfile
1731 typeset -i errs=$(pool_errors_from_file $tmpfile $vdev)
1742 typeset tmpfile=$(pool_error_file $pool)
1744 cat $tmpfile
1746 typeset -i errs=$(pool_errors_from_file $tmpfile)
/freebsd-current/crypto/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_misc.c34 out = tmpfile();
/freebsd-current/sys/tools/
H A Dmakesyscalls.lua372 files[tmpname] = io.tmpfile()
373 files[dcltmpname] = io.tmpfile()
447 local function read_file(tmpfile)
448 if files[tmpfile] == nil then
449 print("Not found: " .. tmpfile)
453 local fh = files[tmpfile]
458 local function write_line(tmpfile, line)
459 if files[tmpfile] == nil then
460 print("Not found: " .. tmpfile)
463 assert(files[tmpfile]
[all...]
/freebsd-current/usr.bin/csplit/
H A Dcsplit.c387 if ((ofp = tmpfile()) == NULL)
388 err(1, "tmpfile");
/freebsd-current/contrib/byacc/
H A Dmain.c722 * tmpfile() should be adequate, except that it may require special privileges
791 result = tmpfile();
/freebsd-current/include/
H A Dstdio.h285 FILE *tmpfile(void);
/freebsd-current/sys/contrib/openzfs/tests/test-runner/bin/
H A Dzts-report.py.in255 'tmpfile/setup': ['SKIP', tmpfile_reason],
/freebsd-current/contrib/lua/src/
H A Dliolib.c303 p->f = tmpfile();
750 {"tmpfile", io_tmpfile},
/freebsd-current/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh2004 cp "${BASEDIR}/${F}" tmpfile
2005 if [ `sha256 -q tmpfile` != ${HASH} ]; then
2012 gzip -c < tmpfile > files/${HASH}.gz
2013 rm tmpfile
/freebsd-current/tests/sys/kern/
H A Dptrace_test.c3499 char tmpfile[64]; local
3508 (void)snprintf(tmpfile, sizeof(tmpfile), "./ptrace.XXXXXX");
3509 fd = mkstemp(tmpfile);
3521 cfd = open(tmpfile, O_RDONLY);
3567 REQUIRE_EQ(unlink(tmpfile), 0);
/freebsd-current/contrib/unbound/services/
H A Dauthzone.c5182 char tmpfile[1024]; local
5217 if((size_t)strlen(zfilename) + 16 > sizeof(tmpfile)) {
5223 snprintf(tmpfile, sizeof(tmpfile), "%s.tmp%u", zfilename,
5227 if(!auth_zone_write_chunks(xfr, tmpfile)) {
5228 unlink(tmpfile);
5232 } else if(!auth_zone_write_file(z, tmpfile)) {
5233 unlink(tmpfile);
5240 if(rename(tmpfile, zfilename) < 0) {
5241 log_err("could not rename(%s, %s): %s", tmpfile, zfilenam
[all...]
/freebsd-current/usr.bin/pr/
H A Dpr.c1603 if ((err = tmpfile()) == NULL) {

Completed in 373 milliseconds

1234