Searched refs:tmpfile (Results 1 - 25 of 39) sorted by last modified time

12

/freebsd-10.0-release/include/
H A Dmk-osreldate.sh33 tmpfile=$(mktemp osreldate.XXXXXXXX)
34 trap "rm -f $tmpfile" EXIT
42 cat > $tmpfile <<EOF
51 chmod 644 $tmpfile
52 mv $tmpfile osreldate.h
H A Dstdio.h269 FILE *tmpfile(void);
/freebsd-10.0-release/usr.bin/pr/
H A Dpr.c1584 if ((err = tmpfile()) == NULL) {
/freebsd-10.0-release/usr.bin/csplit/
H A Dcsplit.c388 if ((ofp = tmpfile()) == NULL)
389 err(1, "tmpfile");
/freebsd-10.0-release/usr.bin/xlint/llib/
H A Dllib-lposix296 FILE *(tmpfile)(void);
H A Dllib-lstdc136 FILE *(tmpfile)(void);
/freebsd-10.0-release/cddl/compat/opensolaris/misc/
H A Dfsshare.c153 char tmpfile[PATH_MAX]; local
165 if (strlcpy(tmpfile, file, sizeof(tmpfile)) >= sizeof(tmpfile))
167 if (strlcat(tmpfile, ".XXXXXXXX", sizeof(tmpfile)) >= sizeof(tmpfile))
169 fd = mkstemp(tmpfile);
220 unlink(tmpfile);
222 if (rename(tmpfile, fil
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.badfreopen.ksh30 $dtrace -wq -o $tmpfile -s /dev/stdin 2> $errfile <<EOF
75 tmpfile=/tmp/tst.badfreopen.$$
82 i=`cat $tmpfile`
85 echo "$0: unexpected contents in $tmpfile: " \
100 rm $tmpfile $errfile
H A Dtst.freopen.ksh30 $dtrace -wq -o $tmpfile -s /dev/stdin $tmpfile <<EOF
56 if [ -f $tmpfile ]; then
57 rm $tmpfile
61 if [ -f $tmpfile.$i ]; then
62 rm $tmpfile.$i
74 tmpfile=/tmp/tst.freopen.$$
82 if [ -f $tmpfile.$iter ]; then
83 echo "$0: did not expect to find file: $tmpfile.$iter"
88 mv $tmpfile
[all...]
H A Dtst.ftruncate.ksh30 $dtrace -q -o $tmpfile -s /dev/stdin <<EOF
56 tmpfile=/tmp/tst.ftruncate.$$
61 cat $tmpfile
62 rm $tmpfile
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cc.c1868 FILE *ofp = tmpfile();
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.manypids.ksh46 tmpfile=/tmp/dtest.$$
58 echo "tick-1sec\n{\n\texit(0);\n}\n" > $tmpfile
61 echo "pid${pids[$i]}::malloc:entry\n{}\n" >> $tmpfile
65 $dtrace -s $tmpfile
68 rm $tmpfile
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Dtst.libdepfullyconnected.ksh41 tmpfile=/tmp/libdeporder.$$
67 DTRACE_DEBUG=1 $dtrace -L$libdir -e >$tmpfile 2>&1
69 perl /dev/stdin $tmpfile <<EOF
99 rm $tmpfile
/freebsd-10.0-release/lib/libc/stdio/
H A DMakefile.inc22 tempnam.c tmpfile.c \
82 MLINKS+=tmpnam.3 tempnam.3 tmpnam.3 tmpfile.3
H A DSymbol.map82 tmpfile;
H A Dtmpfile.c34 static char sccsid[] = "@(#)tmpfile.c 8.1 (Berkeley) 6/4/93";
51 tmpfile() function
/freebsd-10.0-release/usr.sbin/bsdconfig/console/
H A Dttys116 local tmpfile="$( mktemp -t "pgm" )"
117 [ "$tmpfile" ] || return $FAILURE
126 f_quietly chmod "${mode:-0644}" "$tmpfile"
127 f_quietly chown "${owner:-root:wheel}" "$tmpfile"
155 ' "$ETC_TTYS" > "$tmpfile" 2>&1 ); then
159 if ! err=$( mv -f "$tmpfile" "$ETC_TTYS" 2>&1 ); then
/freebsd-10.0-release/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh1771 cp "${BASEDIR}/${F}" tmpfile
1772 if [ `sha256 -q tmpfile` != ${HASH} ]; then
1779 gzip -c < tmpfile > files/${HASH}.gz
1780 rm tmpfile
/freebsd-10.0-release/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-10.0-release/contrib/gcc/
H A Dsys-protos.h1167 extern FILE * tmpfile(void);
/freebsd-10.0-release/contrib/byacc/
H A Dmain.c506 * tmpfile() should be adequate, except that it may require special privileges
564 result = tmpfile();
/freebsd-10.0-release/contrib/byacc/test/
H A Drun_test.sh16 tmpfile=temp$$
63 < $CMP >$tmpfile \
64 && mv $tmpfile $CMP
/freebsd-10.0-release/contrib/groff/src/devices/grolbp/
H A Dlbp.cpp358 f = tmpfile();
384 // since it is created by tmpfile()
H A Dlbp.h182 /* vdmoutput = tmpfile();*/
204 if (vdmoutput == NULL) vdminit(tmpfile());
/freebsd-10.0-release/contrib/groff/src/devices/xditview/
H A DDvi.c431 dw->dvi.tmpFile = tmpfile();

Completed in 156 milliseconds

12