Searched refs:mkstemp (Results 1 - 25 of 141) sorted by relevance

123456

/openbsd-current/gnu/usr.bin/texinfo/lib/
H A Dmkstemp.c20 /* Disable the definition of mkstemp to rpl_mkstemp (from config.h) in this
23 #undef mkstemp macro
/openbsd-current/gnu/usr.bin/perl/cpan/OpenBSD-MkTemp/lib/OpenBSD/
H A DMkTemp.pm9 our @EXPORT_OK = qw( mkstemps mkstemp mkdtemp );
10 our @EXPORT = qw( mkstemp mkdtemp );
16 sub mkstemp($) subroutine
42 my($fh, $file) = mkstemp("/tmp/fooXXXXXXXXXX");
55 mkstemp() and mkstemps() must be called with a template argument
65 $fh = mkstemp($template)
74 mkstemp(3)
/openbsd-current/lib/libc/stdlib/
H A Dmkstemp.c1 /* $OpenBSD: mkstemp.c,v 1.1 2024/01/19 19:45:02 millert Exp $ */
54 mkstemp(char *path) function
58 DEF_WEAK(mkstemp); variable
/openbsd-current/regress/sys/kern/dup2/
H A Ddup2test.c17 if ((orgfd = mkstemp(temp)) < 0)
18 err(1, "mkstemp");
/openbsd-current/regress/sys/kern/dup2_self/
H A Ddup2_self.c37 if ((orgfd = mkstemp(temp)) < 0)
38 err(1, "mkstemp");
/openbsd-current/regress/sys/kern/fcntl_dup/
H A Dfcntl_dup.c17 if ((orgfd = mkstemp(temp)) < 0)
18 err(1, "mkstemp");
/openbsd-current/regress/sys/uvm/mmap_write_self/
H A Dmmap_write_self.c41 if ((fd = mkstemp(name)) == -1)
42 err(1, "mkstemp");
/openbsd-current/regress/lib/libc/stdio_threading/fgetln/
H A Dfgetln_test.c50 if ((fd = mkstemp(sfn)) == -1 ||
/openbsd-current/regress/lib/libc/stdio_threading/fgets/
H A Dfgets_test.c49 if ((fd = mkstemp(sfn)) == -1 ||
/openbsd-current/regress/lib/libc/stdio_threading/fputs/
H A Dfputs_test.c47 if ((fd = mkstemp(sfn)) == -1 ||
/openbsd-current/regress/lib/libc/stdio_threading/fread/
H A Dfread_test.c51 if ((fd = mkstemp(sfn)) == -1 ||
/openbsd-current/regress/lib/libc/stdio_threading/fwrite/
H A Dfwrite_test.c47 if ((fd = mkstemp(sfn)) == -1 ||
/openbsd-current/lib/libc/stdio/
H A Dtmpfile.c53 fd = mkstemp(buf);
/openbsd-current/gnu/usr.bin/texinfo/m4/
H A DMakefile.am16 mkstemp.m4 \
/openbsd-current/gnu/llvm/llvm/tools/llvm-shlib/
H A Dgen-msvc-exports.py26 from tempfile import mkstemp namespace
49 fd, name = mkstemp(*args, **kwargs)
/openbsd-current/regress/lib/libc/
H A DMakefile14 SUBDIR+= malloc mkstemp modf
/openbsd-current/regress/sys/kern/unveil/
H A Dunveil.h108 UV_SHOULD_SUCCEED(((fd1 = mkstemp(uv_file1)) == -1), "mkstemp");
111 UV_SHOULD_SUCCEED(((fd2 = mkstemp(uv_file2)) == -1), "mkstemp");
/openbsd-current/regress/sys/kern/mmap/
H A Dmmaptest.c50 fd = mkstemp(nm);
52 err(1, "mkstemp");
/openbsd-current/regress/sys/kern/pread/
H A Dpread.c21 if ((fd = mkstemp(temp)) < 0)
22 err(1, "mkstemp");
/openbsd-current/regress/sys/kern/pwrite/
H A Dpwrite.c24 if ((fd = mkstemp(temp)) < 0)
25 err(1, "mkstemp");
/openbsd-current/regress/sys/uvm/mmap_mod/
H A Dmmap_mod.c29 if ((fd = mkstemp(name)) == -1)
30 err(1, "mkstemp");
/openbsd-current/regress/sys/kern/flock/
H A Dutil.c46 fd = mkstemp(template);
48 err(1, "mkstemp");
/openbsd-current/regress/sys/kern/mmap2/
H A Dmmaptest.c30 if ((fd = mkstemp(fname)) < 0)
31 err(1, "mkstemp");
/openbsd-current/gnu/usr.bin/perl/cpan/File-Temp/t/
H A Dmktemp.t21 (my $fh, $template) = mkstemp($template);
/openbsd-current/regress/lib/libc/sys/
H A Dt_fsync.c106 fd = mkstemp(buf);

Completed in 635 milliseconds

123456