HomeSort by: relevance | last modified time | path
    Searched refs:mkstemp (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/lib/libc/stdio/
mkstemp.c 1 /* $NetBSD: mkstemp.c,v 1.12 2014/06/18 17:47:58 christos Exp $ */
40 __RCSID("$NetBSD: mkstemp.c,v 1.12 2014/06/18 17:47:58 christos Exp $");
45 __weak_alias(mkstemp,_mkstemp)
49 mkstemp(char *path)
tmpfile.c 69 fd = mkstemp(buf);
Makefile.inc 14 getwchar.c makebuf.c mkdtemp.c mkstemp.c mkstemps.c mkostemp.c \
48 MLINKS+=mktemp.3 mkdtemp.3 mktemp.3 mkstemp.3
  /src/usr.bin/sort/
tmp.c 97 if ((fd = mkstemp(path)) < 0)
98 err(2, "ftmp: mkstemp(\"%s\")", path);
  /src/games/larn/
bill.c 136 if ((fd = mkstemp(fname)) == -1)
  /src/tests/lib/libc/sys/
t_fsync.c 102 fd = mkstemp(buf);
t_aio_rw.c 57 fd = mkstemp(path);
t_aio_suspend.c 57 fd = mkstemp(path);
  /src/lib/libc/db/db/
dbfile.c 102 if ((fd = mkstemp(path)) != -1) {
  /src/usr.bin/mktemp/
mktemp.c 32 * BSD-like OS without mkstemp(). It's been modified over the years
33 * to use mkstemp() rather than the original O_CREAT|O_EXCL/fstat/lstat
148 fd = mkstemp(name);
152 warn("mkstemp failed on %s", name);
  /src/tests/lib/libc/stdlib/
t_exit.c 158 fd = mkstemp(buf);
  /src/usr.bin/rwall/
rwall.c 165 if ((fd = mkstemp(tmpname)) == -1 || (fp = fdopen(fd, "r+")) == NULL)
  /src/usr.bin/sdiff/
edit.c 129 if ((fd = mkstemp(filename)) == -1)
130 err(2, "mkstemp");
  /src/usr.bin/xlint/lint1/
main1.c 107 if ((fd = mkstemp(template)) == -1)
  /src/usr.bin/mail/
collect.c 167 if ((fd = mkstemp(tempname)) == -1 ||
405 if ((fd = mkstemp(mailtempname)) == -1 ||
636 if ((fd = mkstemp(tempname)) == -1 ||
quit.c 178 if ((fd = mkstemp(tempname)) == -1 ||
326 if ((fd = mkstemp(tempname)) == -1 ||
432 if ((fd = mkstemp(tempname)) == -1 ||
edit.c 70 if ((t = mkstemp(tempname)) == -1) {
  /src/sbin/dump/
snapshot.c 113 fd = mkstemp(path);
  /src/sys/arch/x68k/stand/newdisk/
newdisk.c 173 fd = mkstemp(filename);
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.cc 176 int Fd = mkstemp(TmpFilename);
  /src/usr.bin/chpass/
chpass.c 227 dfd = mkstemp(tempname);
  /src/usr.bin/rdist/
main.c 201 fd = mkstemp(tempfile);
  /src/usr.bin/patch/
patch.c 178 if ((fd = mkstemp(TMPOUTNAME)) < 0)
184 if ((fd = mkstemp(TMPINNAME)) < 0)
190 if ((fd = mkstemp(TMPREJNAME)) < 0)
196 if ((fd = mkstemp(TMPPATNAME)) < 0)
  /src/share/examples/refuse/ian/ian/
ian.c 104 fd = mkstemp(tmpname);
  /src/sys/arch/x68k/stand/installboot/
installboot.c 229 fd = mkstemp(target);

Completed in 25 milliseconds

1 2 3 4