| /src/external/gpl2/groff/dist/src/libs/libgroff/ |
| mkstemp.cpp | 1 /* $NetBSD: mkstemp.cpp,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */ 23 /* This file is heavily based on the file mkstemp.c which is part of the 33 int mkstemp(char *tmpl) function
|
| /src/lib/libc/stdio/ |
| mkstemp.c | 1 /* $NetBSD: mkstemp.c,v 1.12 2014/06/18 17:47:58 christos Exp $ */ 40 __RCSID("$NetBSD: mkstemp.c,v 1.12 2014/06/18 17:47:58 christos Exp $"); 45 __weak_alias(mkstemp,_mkstemp) 49 mkstemp(char *path)
|
| tmpfile.c | 69 fd = mkstemp(buf);
|
| /src/external/gpl2/diffutils/dist/lib/ |
| mkstemp.c | 1 /* $NetBSD: mkstemp.c,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $ */ 22 /* Disable the definition of mkstemp to rpl_mkstemp (from config.h) in this 25 #undef mkstemp macro
|
| /src/external/gpl2/texinfo/dist/lib/ |
| mkstemp.c | 1 /* $NetBSD: mkstemp.c,v 1.2 2025/05/23 09:37:03 bad Exp $ */ 22 /* Disable the definition of mkstemp to rpl_mkstemp (from config.h) in this 25 #undef mkstemp macro
|
| /src/external/gpl2/xcvs/dist/lib/ |
| mkstemp.c | 18 __RCSID("$NetBSD: mkstemp.c,v 1.2 2016/05/17 14:00:09 christos Exp $"); 25 /* Disable the definition of mkstemp to rpl_mkstemp (from config.h) in this 28 #undef mkstemp macro
|
| /src/external/bsd/kyua-cli/dist/utils/fs/ |
| auto_cleaners.hpp | 77 static auto_file mkstemp(const std::string&);
|
| operations.hpp | 55 fs::path mkstemp(const std::string&);
|
| auto_cleaners.cpp | 223 fs::auto_file::mkstemp(const std::string& path_template) function in class:fs::auto_file 226 const fs::path file_ = fs::mkstemp(path_template);
|
| /src/external/bsd/pcc/dist/pcc/mip/ |
| compat.h | 29 int mkstemp(char *);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/ |
| stdlib.d | 282 int mkstemp(char*); 324 //int mkstemp(char*); 343 alias mkstemp64 mkstemp; 347 int mkstemp(char*); 375 int mkstemp(char*); 416 int mkstemp(char*); 457 int mkstemp(char*); 498 int mkstemp(char*); 539 int mkstemp(char*); 563 int mkstemp(char*) [all...] |
| /src/usr.bin/sort/ |
| tmp.c | 97 if ((fd = mkstemp(path)) < 0) 98 err(2, "ftmp: mkstemp(\"%s\")", path);
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| mkstemp.c | 1 /* $NetBSD: mkstemp.c,v 1.2 2017/01/28 21:31:50 christos Exp $ */ 52 mkstemp(char *template) function
|
| test-readenv.c | 55 fd = mkstemp(tmpl); 57 err(1, "mkstemp");
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-shlib/ |
| gen-msvc-exports.py | 26 from tempfile import mkstemp 49 fd, name = mkstemp(*args, **kwargs)
|
| /src/games/larn/ |
| bill.c | 136 if ((fd = mkstemp(fname)) == -1)
|
| /src/tests/lib/libc/sys/ |
| t_fsync.c | 102 fd = mkstemp(buf);
|
| /src/external/bsd/libbind/dist/bsd/ |
| mktemp.c | 80 mkstemp(char *path) { function
|
| /src/external/bsd/nvi/dist/clib/ |
| mkstemp.c | 40 __RCSID("$NetBSD: mkstemp.c,v 1.2 2014/01/26 21:43:45 christos Exp $"); 54 * PUBLIC: int mkstemp __P((char *)); 57 mkstemp(char *path) function
|
| /src/external/gpl2/groff/dist/src/include/ |
| lib.h | 74 /* since mkstemp() is defined as a real C++ function if taken from 75 groff's mkstemp.cpp we need a declaration */ 76 int mkstemp(char *tmpl);
|
| /src/lib/libc/db/db/ |
| dbfile.c | 102 if ((fd = mkstemp(path)) != -1) {
|
| /src/usr.bin/mktemp/ |
| mktemp.c | 32 * BSD-like OS without mkstemp(). It's been modified over the years 33 * to use mkstemp() rather than the original O_CREAT|O_EXCL/fstat/lstat 148 fd = mkstemp(name); 152 warn("mkstemp failed on %s", name);
|
| /src/external/bsd/ntp/dist/sntp/libopts/ |
| pgusage.c | 57 int fd = mkstemp(bf);
|
| /src/tests/lib/libc/stdlib/ |
| t_exit.c | 158 fd = mkstemp(buf);
|
| /src/usr.bin/rwall/ |
| rwall.c | 165 if ((fd = mkstemp(tmpname)) == -1 || (fp = fdopen(fd, "r+")) == NULL)
|