Home
last modified time | relevance | path

Searched refs:mkstemp (Results 1 – 25 of 80) sorted by relevance

1234

/external/bison/lib/
Dstdlib.in.h397 # define mkstemp rpl_mkstemp
399 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
400 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/));
403 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
405 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/));
407 _GL_CXXALIASWARN (mkstemp);
409 # undef mkstemp
411 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
/external/clang/test/Analysis/
Dsecurity-syntax-checks.m180 // mkstemp()
185 int mkstemp(char *template); function
189mkstemp("XX"); // expected-warning {{Call to 'mkstemp' should have at least 6 'X's in the format s…
190 mkstemp("XXXXXX");
191 mkstemp("XXXXXXX");
196mkstemp("X"); // expected-warning {{Call to 'mkstemp' should have at least 6 'X's in the format st…
/external/bison/darwin-lib/
Dstdlib.h719 # 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
733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
/external/bison/linux-lib/
Dstdlib.h719 # 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
733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
/external/webkit/Tools/wx/build/
Dwaf_extensions.py37 (fd, filename) = tempfile.mkstemp()
51 (fd2, filename2) = tempfile.mkstemp()
/external/elfutils/tests/
Dnewscn.c51 fd = mkstemp (name); in main()
Dnewfile.c68 fd = mkstemp (fname); in main()
/external/bison/djgpp/
Dsubpipe.c83 fd = mkstemp(tmp_file_name[0]); in init_subpipe()
90 fd = mkstemp(tmp_file_name[1]); in init_subpipe()
/external/openssh/openbsd-compat/
Dxmmap.c68 tmpfd = mkstemp(tmpname); in xmmap()
Dmktemp.c59 mkstemp(char *path) in mkstemp() function
Dopenbsd-compat.h97 int mkstemp(char *path);
/external/libmtp/src/
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); in spl_to_playlist_t()
195 int fd = mkstemp(tmpname); in playlist_t_to_spl()
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
Dpreparechangelogforrevert_unittest.py45 …(file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on…
/external/valgrind/main/coregrind/
Dpub_core_libcfile.h91 extern Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname );
/external/webkit/Source/WebCore/platform/efl/
DFileSystemEfl.cpp81 handle = mkstemp(buffer); in openTemporaryFile()
/external/qemu/android/utils/
Dtempfile.c91 tempfd = mkstemp( template ); in tempfile_create()
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
Dchangelog_unittest.py114 …(file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on …
/external/elfutils/libasm/
Dasm_begin.c157 result->fd = mkstemp (result->tmp_fname);
/external/llvm/lib/Support/Unix/
DPath.inc147 // If no mkdtemp is available, mkstemp can be used to create a temporary file
154 if (-1 == (fd = mkstemp(pathname))) {
168 // If a system doesn't have mkdtemp(3) or mkstemp(3) but it does have
829 // Append an XXXXXX pattern to the end of the file for use with mkstemp,
845 if ((TempFD = mkstemp(FNBuffer)) == -1)
855 // By default mkstemp sets the mode to 0600, so update mode bits now.
858 // If we don't have mkstemp, use the old and obsolete mktemp function.
/external/e2fsprogs/lib/blkid/
Dsave.c97 fd = mkstemp(tmp); in blkid_flush_cache()
/external/tcpdump/lbl/
Dos-sunos4.h124 int mkstemp(char *);
/external/libpcap/lbl/
Dos-sunos4.h124 int mkstemp(char *);
/external/webkit/Source/WebKit2/Platform/unix/
DSharedMemoryUnix.cpp119 while ((fileDescriptor = mkstemp(tempNameC)) == -1) { in create()
/external/llvm/utils/unittest/googletest/
Dgtest-port.cc510 const int captured_fd = mkstemp(name_template); in CapturedStream()
517 const int captured_fd = mkstemp(name_template); in CapturedStream()
/external/elfutils/src/
Dranlib.c246 int newfd = mkstemp (tmpfname); in handle_file()

1234