Searched refs:tmpfile (Results 1 - 25 of 47) sorted by relevance

12

/netbsd-6-1-5-RELEASE/share/man/man8/
H A DMAKEDEV2manpage.sh49 tmpfile="${manpage}.$$";
52 > ${tmpfile} || { rm ${tmpfile}; exit 1; }
53 if ${DIFF} -I'^\.Dd ' -I'^\.\\" $NetBSD' -q ${manpage} ${tmpfile} \
57 rm ${tmpfile};
60 if [ `wc -l < ${tmpfile}` -ne `wc -l < ${manpage}` ]; then
65 sed "s/@@@DATE@@@/$date/" ${tmpfile} > ${tmpfile}.2
66 rm ${tmpfile}
67 mv ${tmpfile}
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/tests/scripts/
H A Dtest030-relay76 tmpfile=savelog.log
77 if test -f $tmpfile ; then
78 rm -f $tmpfile
100 mv -f $LOG1 $tmpfile
106 if test -f $tmpfile ; then
107 mv $tmpfile $LOG1
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/contrib/
H A Dwarn_summary141 tmpfile=/tmp/tmp-warn.$$
143 # Remove $tmpfile on exit and various signals.
144 trap "rm -f $tmpfile" 0
145 trap "rm -f $tmpfile ; exit 1" 1 2 3 5 9 13 15
181 stageNfilter < $file | subdirectoryFilter > $tmpfile
186 warningFilter < $tmpfile
188 cat $tmpfile
202 count=`warningFilter < $tmpfile | wc -l`
207 warningFilter < $tmpfile | srcdirFilter | $AWK -F: '{print$1}' | sort | \
212 warningFilter < $tmpfile | keywordFilte
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/contrib/
H A Dwarn_summary137 tmpfile=/tmp/tmp-warn.$$
139 # Remove $tmpfile on exit and various signals.
140 trap "rm -f $tmpfile" 0
141 trap "rm -f $tmpfile ; exit 1" 1 2 3 5 9 13 15
177 stageNfilter < $file | subdirectoryFilter > $tmpfile
182 warningFilter < $tmpfile
184 cat $tmpfile
198 count=`warningFilter < $tmpfile | wc -l`
203 warningFilter < $tmpfile | srcdirFilter | $AWK -F: '{print$1}' | sort | \
208 warningFilter < $tmpfile | keywordFilte
[all...]
/netbsd-6-1-5-RELEASE/external/cddl/osnet/lib/libzfs/
H A Dfsshare.c149 char tmpfile[PATH_MAX]; local
161 if (strlcpy(tmpfile, file, sizeof(tmpfile)) >= sizeof(tmpfile))
163 if (strlcat(tmpfile, ".XXXXXXXX", sizeof(tmpfile)) >= sizeof(tmpfile))
165 fd = mkstemp(tmpfile);
216 unlink(tmpfile);
218 if (rename(tmpfile, fil
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/local/
H A Dmaildir.c85 char *tmpfile; local
187 tmpfile = concatenate(tmpdir, STR(buf), (char *) 0);
189 if ((dst = vstream_fopen(tmpfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == 0
192 || (dst = vstream_fopen(tmpfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == 0)) {
194 "create maildir file %s: %m", tmpfile);
202 msg_fatal("fstat %s: %m", tmpfile);
214 if (sane_link(tmpfile, newfile) < 0
217 || sane_link(tmpfile, newfile) < 0)) {
223 if (unlink(tmpfile) < 0)
224 msg_warn("remove %s: %m", tmpfile);
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/virtual/
H A Dmaildir.c80 char *tmpfile; local
181 tmpfile = concatenate(tmpdir, STR(buf), (char *) 0);
183 if ((dst = vstream_fopen(tmpfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == 0
186 || (dst = vstream_fopen(tmpfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == 0)) {
188 "create maildir file %s: %m", tmpfile);
196 msg_fatal("fstat %s: %m", tmpfile);
208 if (sane_link(tmpfile, newfile) < 0
211 || sane_link(tmpfile, newfile) < 0)) {
217 if (unlink(tmpfile) < 0)
218 msg_warn("remove %s: %m", tmpfile);
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/test-programs/
H A Dsh_helpers.sh41 touch $(atf_config_get tmpfile)
46 rm $(atf_config_get tmpfile)
57 touch $(atf_config_get tmpfile)
63 rm $(atf_config_get tmpfile)
74 touch $(atf_config_get tmpfile)
80 rm $(atf_config_get tmpfile)
105 touch $(atf_config_get tmpfile)
107 touch $(atf_config_get tmpfile).no
111 rm $(atf_config_get tmpfile)
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/test-programs/
H A Dsh_helpers.sh41 touch $(atf_config_get tmpfile)
46 rm $(atf_config_get tmpfile)
57 touch $(atf_config_get tmpfile)
63 rm $(atf_config_get tmpfile)
74 touch $(atf_config_get tmpfile)
80 rm $(atf_config_get tmpfile)
105 touch $(atf_config_get tmpfile)
107 touch $(atf_config_get tmpfile).no
111 rm $(atf_config_get tmpfile)
/netbsd-6-1-5-RELEASE/external/bsd/byacc/dist/test/
H A Drun_test.sh16 tmpfile=temp$$
56 < $CMP >$tmpfile \
57 && mv $tmpfile $CMP
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/contrib/
H A Dsccs2rcs.in101 set tmpfile = /tmp/sccs2rcs_$$_tmp
102 rm -f $tmpfile
232 sed -f $sedfile $file > $tmpfile
235 cp $tmpfile $file
257 cat > $tmpfile
258 ci -f -r$rev -d"$date" -w$author -t$tmpfile $file < $initialfile >>& $logfile
274 sccs prs -r$rev $file | grep "." > $tmpfile
276 # put the delta message in $tmpfile
277 ed $tmpfile >>& $logfile <<EOF
283 ci -f -r$rev -d"$date" -w$author $file < $tmpfile >>
[all...]
H A Drcs2sccs.sh25 tmpfile=/tmp/rcs2sccs_$$_tmp
26 rm -f $tmpfile
51 sed -e 's/;/\\$/g' $sedfile > $tmpfile
52 cp $tmpfile $sedfile
89 sed -f $sedfile $file > $tmpfile
96 cp $tmpfile $file
133 sed -e "s;^d D $rev ../../.. ..:..:.. [^ ][^ ]*;d D $rev $date $author;" SCCS/s.$file > $tmpfile
135 cp $tmpfile SCCS/s.$file
151 rm -f $tmpfile $emptyfile $initialfile $sedfile $commentfile
/netbsd-6-1-5-RELEASE/gnu/dist/groff/contrib/gdiffmk/tests/
H A Druntests.in39 tmpfile=/tmp/$$
40 trap 'rm -f ${tmpfile}' 0 1 2 3 15
46 ${command} ${srcdir}/file1 ${srcdir}/file2 ${ResultFile} 2>${tmpfile}
47 cat ${tmpfile} >>${ResultFile}
/netbsd-6-1-5-RELEASE/lib/libc/stdio/
H A Dtmpfile.c1 /* $NetBSD: tmpfile.c,v 1.10 2003/01/18 11:29:58 thorpej Exp $ */
38 static char sccsid[] = "@(#)tmpfile.c 8.1 (Berkeley) 6/4/93";
40 __RCSID("$NetBSD: tmpfile.c,v 1.10 2003/01/18 11:29:58 thorpej Exp $");
55 tmpfile() function
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/tests/
H A Dgettext-119 tmpfile="$tmpfiles gtmf-test1.ok"
H A Dgettext-231 tmpfile="$tmpfiles gtmf-test2.ok"
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/binutils/testsuite/binutils-all/
H A Dnm.exp116 set tmpfile [remote_download host tmpdir/unique.o]
118 set tmpfile tmpdir/unique.o
121 set got [binutils_run $NM "$NMFLAGS -g $tmpfile"]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/headers/cstdio/
H A Dfunctions_std.cc25 using std::tmpfile;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/c/
H A Dstd_cstdio.h77 #undef tmpfile macro
/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/ypinit/
H A Dypinit.sh23 tmpfile=`mktemp /tmp/ypservers.XXXXXX` || exit 1
24 trap "rm -f ${tmpfile} ; exit 0" EXIT INT QUIT
147 > ${tmpfile}
156 echo ${host} >> ${tmpfile}
163 echo ${nextserver} >> ${tmpfile}
167 if [ -s ${tmpfile} ]; then
171 cat ${tmpfile}
196 echo ${host} >> ${tmpfile}
199 /g' >> ${tmpfile}
204 cat ${tmpfile}
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/c_std/
H A Dstd_cstdio.h91 #undef tmpfile macro
138 using ::tmpfile;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
H A Dstdio.h40 using std::tmpfile;
/netbsd-6-1-5-RELEASE/gnu/usr.bin/groff/src/libs/libgroff/
H A DMakefile19 strsave.cpp symbol.cpp tmpfile.cpp tmpname.cpp \
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/libs/libgroff/
H A DMakefile.sub45 tmpfile.$(OBJEXT) \
87 $(srcdir)/tmpfile.cpp \
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/c_compatibility/
H A Dstdio.h40 using std::tmpfile;

Completed in 177 milliseconds

12