/external/bison/lib/ |
D | stdlib.in.h | 397 # 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/ |
D | security-syntax-checks.m | 180 // mkstemp() 185 int mkstemp(char *template); function 189 …mkstemp("XX"); // expected-warning {{Call to 'mkstemp' should have at least 6 'X's in the format s… 190 mkstemp("XXXXXX"); 191 mkstemp("XXXXXXX"); 196 …mkstemp("X"); // expected-warning {{Call to 'mkstemp' should have at least 6 'X's in the format st…
|
/external/bison/darwin-lib/ |
D | stdlib.h | 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 733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
|
/external/bison/linux-lib/ |
D | stdlib.h | 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 733 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
|
/external/webkit/Tools/wx/build/ |
D | waf_extensions.py | 37 (fd, filename) = tempfile.mkstemp() 51 (fd2, filename2) = tempfile.mkstemp()
|
/external/elfutils/tests/ |
D | newscn.c | 51 fd = mkstemp (name); in main()
|
D | newfile.c | 68 fd = mkstemp (fname); in main()
|
/external/bison/djgpp/ |
D | subpipe.c | 83 fd = mkstemp(tmp_file_name[0]); in init_subpipe() 90 fd = mkstemp(tmp_file_name[1]); in init_subpipe()
|
/external/openssh/openbsd-compat/ |
D | xmmap.c | 68 tmpfd = mkstemp(tmpname); in xmmap()
|
D | mktemp.c | 59 mkstemp(char *path) in mkstemp() function
|
D | openbsd-compat.h | 97 int mkstemp(char *path);
|
/external/libmtp/src/ |
D | playlist-spl.c | 101 # 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/ |
D | preparechangelogforrevert_unittest.py | 45 …(file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on…
|
/external/valgrind/main/coregrind/ |
D | pub_core_libcfile.h | 91 extern Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname );
|
/external/webkit/Source/WebCore/platform/efl/ |
D | FileSystemEfl.cpp | 81 handle = mkstemp(buffer); in openTemporaryFile()
|
/external/qemu/android/utils/ |
D | tempfile.c | 91 tempfd = mkstemp( template ); in tempfile_create()
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
D | changelog_unittest.py | 114 …(file_descriptor, file_path) = tempfile.mkstemp() # NamedTemporaryFile always deletes the file on …
|
/external/elfutils/libasm/ |
D | asm_begin.c | 157 result->fd = mkstemp (result->tmp_fname);
|
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 147 // 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/ |
D | save.c | 97 fd = mkstemp(tmp); in blkid_flush_cache()
|
/external/tcpdump/lbl/ |
D | os-sunos4.h | 124 int mkstemp(char *);
|
/external/libpcap/lbl/ |
D | os-sunos4.h | 124 int mkstemp(char *);
|
/external/webkit/Source/WebKit2/Platform/unix/ |
D | SharedMemoryUnix.cpp | 119 while ((fileDescriptor = mkstemp(tempNameC)) == -1) { in create()
|
/external/llvm/utils/unittest/googletest/ |
D | gtest-port.cc | 510 const int captured_fd = mkstemp(name_template); in CapturedStream() 517 const int captured_fd = mkstemp(name_template); in CapturedStream()
|
/external/elfutils/src/ |
D | ranlib.c | 246 int newfd = mkstemp (tmpfname); in handle_file()
|