Searched refs:tempnam (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dgetent.c53 char *tempnam, *dba[2] = { gettytab, NULL }; local
55 tempnam = strdup(name);
56 retval = cgetent(&area, dba, tempnam) == 0 ? 1 : 0;
57 free(tempnam);
/freebsd-11-stable/lib/libc/stdio/
H A Dtempnam.c31 static char sccsid[] = "@(#)tempnam.c 8.1 (Berkeley) 6/4/93";
44 __warn_references(tempnam,
45 "warning: tempnam() possibly used unsafely; consider using mkstemp()");
50 tempnam(const char *dir, const char *pfx) function
H A DMakefile.inc23 tempnam.c tmpfile.c \
88 MLINKS+=tmpnam.3 tempnam.3 tmpnam.3 tmpfile.3
/freebsd-11-stable/contrib/file/src/
H A Dapptype.c56 else if ((filename = tempnam("./", "tmp")) == NULL) {
57 file_error(ms, errno, "cannot create tempnam");
/freebsd-11-stable/contrib/groff/src/roff/groff/
H A Dpipeline.c369 Microsoft's `tempnam' uses the directory specified by `getenv("TMP")'
381 tmpfiles[0] = tempnam(tmpdir, NULL);
382 tmpfiles[1] = tempnam(tmpdir, NULL);
/freebsd-11-stable/contrib/byacc/
H A Dmain.c533 * Split-up to use tempnam, rather than tmpnam; the latter (like
546 if ((name = tempnam(dname, fname)) != 0)
/freebsd-11-stable/include/
H A Dstdio.h368 char *tempnam(const char *, const char *);
/freebsd-11-stable/contrib/gcc/
H A Dsys-protos.h1152 extern char * tempnam(const char *, const char *);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc4827 INTERCEPTOR(char *, tempnam, char *dir, char *pfx) {
4829 COMMON_INTERCEPTOR_ENTER(ctx, tempnam, dir, pfx);
4832 char *res = REAL(tempnam)(dir, pfx);
4836 #define INIT_TEMPNAM COMMON_INTERCEPT_FUNCTION(tempnam);

Completed in 201 milliseconds