Searched refs:mkstemp (Results 1 – 25 of 77) sorted by relevance
1234
/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/webkit/Tools/wx/build/ |
D | waf_extensions.py | 37 (fd, filename) = tempfile.mkstemp() 51 (fd2, filename2) = tempfile.mkstemp()
|
/external/bison/djgpp/ |
D | subpipe.c | 76 fd = mkstemp(tmp_file_name[0]); in init_subpipe() 82 fd = mkstemp(tmp_file_name[1]); in init_subpipe()
|
/external/elfutils/tests/ |
D | newscn.c | 51 fd = mkstemp (name); in main()
|
D | newfile.c | 68 fd = mkstemp (fname); in main()
|
/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/chromium/base/ |
D | file_util_android.cc | 31 mkstemp(char *path) in mkstemp() function
|
/external/webkit/Source/WebCore/platform/efl/ |
D | FileSystemEfl.cpp | 81 handle = mkstemp(buffer); in openTemporaryFile()
|
/external/valgrind/main/coregrind/ |
D | pub_core_libcfile.h | 92 extern Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname );
|
/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 820 // Append an XXXXXX pattern to the end of the file for use with mkstemp, 836 if ((TempFD = mkstemp(FNBuffer)) == -1) 846 // By default mkstemp sets the mode to 0600, so update mode bits now. 849 // 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/libpcap/lbl/ |
D | os-sunos4.h | 124 int mkstemp(char *);
|
/external/tcpdump/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/gtest/src/ |
D | gtest-port.cc | 511 const int captured_fd = mkstemp(name_template); in CapturedStream() 519 const int captured_fd = mkstemp(name_template); in CapturedStream()
|
/external/openssh/ |
D | auth-krb5.c | 239 tmpfd = mkstemp(ccname + strlen("FILE:")); in ssh_krb5_cc_gen()
|
/external/chromium/sdch/open-vcdiff/src/gtest/ |
D | gtest-port.cc | 100 const int captured_fd = mkstemp(name_template); in CapturedStderr()
|
/external/elfutils/src/ |
D | ranlib.c | 246 int newfd = mkstemp (tmpfname); in handle_file()
|
1234