Searched refs:mkdtemp (Results 1 - 25 of 145) sorted by relevance

123456

/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dmkdtemp.h20 /* Get mkdtemp() declaration. */
30 extern char * mkdtemp (char *template);
H A Dmkdtemp.c18 /* Extracted from misc/mkdtemp.c and sysdeps/posix/tempname.c. */
23 #include "mkdtemp.h"
202 mkdtemp (char *template) function
/netbsd-current/external/bsd/mdocml/dist/
H A Dtest-mkdtemp.c9 if (mkdtemp(dirname) != dirname)
H A Dcompat_mkdtemp.c25 * The algorithm of this function is inspired by OpenBSD mkdtemp(3)
36 mkdtemp(char *path) function
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dmkdtemp.c18 /* Extracted from misc/mkdtemp.c. */
33 mkdtemp (char *xtemplate) function
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dmkdtemp.c18 /* Extracted from misc/mkdtemp.c. */
33 mkdtemp (char *xtemplate) function
/netbsd-current/lib/libc/stdio/
H A Dmkdtemp.c1 /* $NetBSD: mkdtemp.c,v 1.11 2012/03/15 18:22:30 christos Exp $ */
41 __RCSID("$NetBSD: mkdtemp.c,v 1.11 2012/03/15 18:22:30 christos Exp $");
46 mkdtemp(char *path) function
/netbsd-current/external/bsd/kyua-cli/dist/utils/fs/
H A Dauto_cleaners.hpp57 static auto_directory mkdtemp(const std::string&);
H A Doperations.hpp54 fs::path mkdtemp(const std::string&);
H A Dauto_cleaners.cpp115 fs::auto_directory::mkdtemp(const std::string& path_template) function in class:fs::auto_directory
118 const fs::path directory_ = fs::mkdtemp(path_template);
H A Doperations_test.cpp283 ATF_TEST_CASE_WITHOUT_HEAD(mkdtemp)
284 ATF_TEST_CASE_BODY(mkdtemp)
291 const fs::path tempdir = fs::mkdtemp(dir_template);
398 ATF_ADD_TEST_CASE(tcs, mkdtemp);
H A Doperations.cpp206 /// The temporary directory is created using mkdtemp(3) using the provided
216 /// \throw fs::system_error If the call to mkdtemp(3) fails.
218 fs::mkdtemp(const std::string& path_template) function in class:fs
227 if (::mkdtemp(buf.get()) == NULL) {
/netbsd-current/external/gpl2/lvm2/dist/test/
H A Dmkdtemp16 # Usage: mkdtemp /tmp phoey.XXXXXXXXXX
63 mkdtemp() function
120 mkdtemp "$@"
/netbsd-current/external/mit/libuv/dist/src/unix/
H A Dos390-syscalls.h65 char *mkdtemp(char* path);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/
H A Dmkdir-recursive-selftests.c52 if (mkdtemp (base.data ()) == NULL)
53 perror_with_name (("mkdtemp"));
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/
H A Dmkdir-recursive-selftests.c52 if (mkdtemp (base.data ()) == NULL)
53 perror_with_name (("mkdtemp"));
/netbsd-current/external/bsd/kyua-cli/dist/engine/drivers/
H A Ddebug_test.cpp133 const fs::auto_directory work_directory = fs::auto_directory::mkdtemp(
/netbsd-current/usr.bin/mktemp/
H A Dmktemp.c35 * A cleanup, misc options and mkdtemp() calls were added to try and work
138 if (mkdtemp(name) == NULL) {
141 warn("mkdtemp failed on %s", name);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/jit/
H A Djit-tempdir.c28 /* Construct a tempdir path template suitable for use by mkdtemp
96 /* Create tempdir using mkdtemp. This is created with 0700 perms and
99 m_path_tempdir = mkdtemp (m_path_template);
/netbsd-current/external/gpl3/gcc/dist/gcc/jit/
H A Djit-tempdir.cc32 /* Construct a tempdir path template suitable for use by mkdtemp
104 /* Create tempdir using mkdtemp. This is created with 0700 perms and
107 m_path_tempdir = mkdtemp (m_path_template);
/netbsd-current/external/bsd/libpcap/dist/testprogs/
H A Dvisopts.py303 os.chdir(tempfile.mkdtemp(prefix="visopts-"))
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/fuzzer/scripts/
H A Dcollect_data_flow.py57 tmpdir = tempfile.mkdtemp(prefix="libfuzzer-tmp-")
/netbsd-current/tests/kernel/
H A Dt_mqueue.c116 tmpdir = mkdtemp(template);
117 ATF_REQUIRE_MSG(tmpdir != NULL, "mkdtemp failed: %d", errno);
/netbsd-current/external/gpl3/gcc/dist/contrib/
H A Dunused_functions.py21 from tempfile import mkdtemp namespace
45 tmpd = mkdtemp(prefix='unused_fun')
/netbsd-current/external/gpl3/gcc.old/dist/contrib/
H A Dunused_functions.py21 from tempfile import mkdtemp namespace
45 tmpd = mkdtemp(prefix='unused_fun')

Completed in 202 milliseconds

123456