Home
last modified time | relevance | path

Searched refs:_gettemp (Results 1 – 2 of 2) sorted by relevance

/freebsd/lib/libc/stdio/
H A Dmktemp.c46 static int _gettemp(int, char *, int *, int, int, int);
56 return (_gettemp(dfd, path, &fd, 0, slen, oflags) ? fd : -1); in mkostempsat()
64 return (_gettemp(AT_FDCWD, path, &fd, 0, slen, oflags) ? fd : -1); in mkostemps()
72 return (_gettemp(AT_FDCWD, path, &fd, 0, slen, 0) ? fd : -1); in mkstemps()
80 return (_gettemp(AT_FDCWD, path, &fd, 0, 0, oflags) ? fd : -1); in mkostemp()
88 return (_gettemp(AT_FDCWD, path, &fd, 0, 0, 0) ? fd : -1); in mkstemp()
94 return (_gettemp(AT_FDCWD, path, (int *)NULL, 1, 0, 0) ? path : (char *)NULL); in mkdtemp()
100 return (_gettemp(AT_FDCWD, path, (int *)NULL, 0, 0, 0) ? path : (char *)NULL); in _mktemp()
113 _gettemp(int dfd, char *path, int *doopen, int domkdir, int slen, int oflags) in _gettemp() function
/freebsd/contrib/sendmail/mail.local/
H A Dmail.local.c1912 static int _gettemp();
1919 return (_gettemp(path, &fd) ? fd : -1);
1923 _gettemp(path, doopen) in _gettemp() function