Home
last modified time | relevance | path

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

1234

/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/webkit/Tools/wx/build/
Dwaf_extensions.py37 (fd, filename) = tempfile.mkstemp()
51 (fd2, filename2) = tempfile.mkstemp()
/external/bison/djgpp/
Dsubpipe.c76 fd = mkstemp(tmp_file_name[0]); in init_subpipe()
82 fd = mkstemp(tmp_file_name[1]); in init_subpipe()
/external/elfutils/tests/
Dnewscn.c51 fd = mkstemp (name); in main()
Dnewfile.c68 fd = mkstemp (fname); in main()
/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/chromium/base/
Dfile_util_android.cc31 mkstemp(char *path) in mkstemp() function
/external/webkit/Source/WebCore/platform/efl/
DFileSystemEfl.cpp81 handle = mkstemp(buffer); in openTemporaryFile()
/external/valgrind/main/coregrind/
Dpub_core_libcfile.h92 extern Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname );
/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
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/
Dsave.c97 fd = mkstemp(tmp); in blkid_flush_cache()
/external/libpcap/lbl/
Dos-sunos4.h124 int mkstemp(char *);
/external/tcpdump/lbl/
Dos-sunos4.h124 int mkstemp(char *);
/external/webkit/Source/WebKit2/Platform/unix/
DSharedMemoryUnix.cpp119 while ((fileDescriptor = mkstemp(tempNameC)) == -1) { in create()
/external/gtest/src/
Dgtest-port.cc511 const int captured_fd = mkstemp(name_template); in CapturedStream()
519 const int captured_fd = mkstemp(name_template); in CapturedStream()
/external/openssh/
Dauth-krb5.c239 tmpfd = mkstemp(ccname + strlen("FILE:")); in ssh_krb5_cc_gen()
/external/chromium/sdch/open-vcdiff/src/gtest/
Dgtest-port.cc100 const int captured_fd = mkstemp(name_template); in CapturedStderr()
/external/elfutils/src/
Dranlib.c246 int newfd = mkstemp (tmpfname); in handle_file()

1234