Searched defs:mkstemp (Results 1 - 6 of 6) sorted by path

/external/bison/darwin-lib/
H A Dstdlib.h91 /* On Mac OS X 10.3, only <unistd.h> declares mkstemp. */
719 # define mkstemp rpl_mkstemp
721 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
722 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/));
725 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
727 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/));
729 _GL_CXXALIASWARN (mkstemp);
731 # undef mkstemp macro
733 _GL_WARN_ON_USE (mkstemp, "mkstemp i
[all...]
/external/bison/linux-lib/
H A Dstdlib.h91 /* On Mac OS X 10.3, only <unistd.h> declares mkstemp. */
719 # define mkstemp rpl_mkstemp
721 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
722 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/));
725 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
727 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/));
729 _GL_CXXALIASWARN (mkstemp);
731 # undef mkstemp macro
733 _GL_WARN_ON_USE (mkstemp, "mkstemp i
[all...]
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
H A Dfake_tempfile.py91 >storage area. The file is created using mkstemp. It will be destroyed as
103 >The dir, prefix and suffix parameters are passed to mkstemp()
143 temp = self.mkstemp(suffix=suffix, prefix=prefix, dir=dir)
152 def mkstemp(self, suffix='', prefix=None, dir=None, text=False): member in class:FakeTempfileModule
157 Python 2.4.1 tempfile.mkstemp.__doc__ =
158 >mkstemp([suffix, [prefix, [dir, [text]]]])
255 # python -c 'import tempfile; tempfile.mkstemp(dir="/no/such/dr")'
/external/libmtp/src/
H A Dplaylist-spl.c101 # define mkstemp(_pattern) _open(_mktemp(_pattern), _O_CREAT | _O_SHORT_LIVED | _O_EXCL) macro
103 # error Missing mkstemp() function.
136 int fd = mkstemp(tmpname);
190 char tmpname[] = "/tmp/mtp-spl2pl-XXXXXX"; // must be a var since mkstemp modifies it
195 int fd = mkstemp(tmpname);
/external/openssh/openbsd-compat/
H A Dmktemp.c111 "warning: mktemp() possibly used unsafely; consider using mkstemp()");
121 mkstemp(char *path) function
/external/valgrind/coregrind/
H A Dm_libcfile.c886 Int VG_(mkstemp) ( const HChar* part_of_name, /*OUT*/HChar* fullname ) function
910 VG_(printf)("VG_(mkstemp): trying: %s\n", fullname);
916 VG_(umsg)("VG_(mkstemp): failed to create temp file: %s\n", fullname);

Completed in 942 milliseconds