Searched refs:mkstemp (Results 1 - 25 of 126) sorted by relevance

123456

/macosx-10.10/text_cmds-88/sort/
H A Dstdlib--.h24 #undef mkstemp macro
25 #define mkstemp mkstemp_safer macro
H A Dmkstemp-safer.c1 /* Invoke mkstemp, but avoid some glitches.
26 /* Like mkstemp, but do not return STDIN_FILENO, STDOUT_FILENO, or
32 return fd_safer (mkstemp (template));
/macosx-10.10/groff-38/groff/src/libs/libgroff/
H A Dmkstemp.cpp21 /* This file is heavily based on the file mkstemp.c which is part of the
31 int mkstemp(char *tmpl) function
H A Dtmpfile.cpp176 int fd = mkstemp(templ);
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dstdlib_.h119 # define mkstemp rpl_mkstemp macro
120 extern int mkstemp (char * /*template*/);
122 /* On MacOS X 10.3, only <unistd.h> declares mkstemp. */
126 # undef mkstemp macro
127 # define mkstemp(t) \ macro
128 (GL_LINK_WARNING ("mkstemp is unportable - " \
129 "use gnulib module mkstemp for portability"), \
130 mkstemp (t))
/macosx-10.10/gnudiff-19/diffutils/lib/
H A Dmkstemp.c20 /* Disable the definition of mkstemp to rpl_mkstemp (from config.h) in this
23 #undef mkstemp macro
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dmktemp.c24 * mktemp,mkstemp implementation
28 #define mkstemp ______mkstemp macro
34 #undef mkstemp macro
80 mkstemp(char* buf) function
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dmkstemp.c50 mkstemp(char *template) function
H A Dtest-readenv.c53 fd = mkstemp(tmpl);
55 err(1, "mkstemp");
/macosx-10.10/apr-32/apr/apr/file_io/netware/
H A Dmktemp.c24 #include <stdlib.h> /* for mkstemp() - Single Unix */
34 fd = mkstemp(template);
/macosx-10.10/lukemftp-14/tnftp/libnetbsd/
H A Dmkstemp.c1 /* $NetBSD: mkstemp.c,v 1.5 2005/06/01 11:48:49 lukem Exp $ */
36 mkstemp(char *path) function
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dtmpfile.c74 fd = mkstemp(buf);
H A Dmktemp.c66 mkstemp(path) function
89 "warning: mktemp() possibly used unsafely; consider using mkstemp()");
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dxmmap.c68 tmpfd = mkstemp(tmpname);
71 fatal("mkstemp(\"%s\"): %s",
H A Dmktemp.c111 "warning: mktemp() possibly used unsafely; consider using mkstemp()");
121 mkstemp(char *path) function
H A Dopenbsd-compat.h97 int mkstemp(char *path);
/macosx-10.10/groff-38/groff/src/include/
H A Dlib.h72 /* since mkstemp() is defined as a real C++ function if taken from
73 groff's mkstemp.cpp we need a declaration */
74 int mkstemp(char *tmpl);
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DFileSystemIOS.mm81 int fd = mkstemp(path.data());
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DFileSystemMac.mm63 platformFileHandle = mkstemp(temporaryFilePath.data());
/macosx-10.10/ntp-92/lib/isc/win32/
H A Dfile.c42 * Emulate UNIX mkstemp, which returns an open FD to the new file
109 mkstemp(char *path) { function
166 tmpfd = mkstemp(buf);
301 fd = mkstemp(templet);
327 * Win32 does not have mkstemp. Using emulation above.
329 fd = mkstemp(templet);
/macosx-10.10/shell_cmds-179/mktemp/
H A Dmktemp.c30 * BSD-like OS without mkstemp(). It's been modified over the years
31 * to use mkstemp() rather than the original O_CREAT|O_EXCL/fstat/lstat
131 fd = mkstemp(name);
135 warn("mkstemp failed on %s", name);
/macosx-10.10/xnu-2782.1.97/SETUP/installfile/
H A Dinstallfile.c98 dstfd = mkstemp(dsttmpname);
100 err(EX_UNAVAILABLE, "mkstemp(%s)", dsttmpname);
/macosx-10.10/Heimdal-398.1.2/appl/popper/
H A Dpop_dropcopy.c77 if ((tf_fd = mkstemp(template)) < 0 ||
/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Dmktemp.c169 #include <stdlib.h> /* for mkstemp() - Single Unix */
172 #include <unistd.h> /* for mkstemp() - FreeBSD */
190 fd = mkstemp(template);
197 * mkstemp didn't subscribe to our preference flags.
/macosx-10.10/bind9-45.101/bind9/lib/isc/win32/
H A Dfile.c44 * Emulate UNIX mkstemp, which returns an open FD to the new file
111 mkstemp(char *path) { function
168 tmpfd = mkstemp(buf);
303 fd = mkstemp(templet);
341 * Win32 does not have mkstemp. Using emulation above.
343 fd = mkstemp(templet);

Completed in 217 milliseconds

123456