Searched refs:_gettemp (Results 1 – 3 of 3) sorted by relevance
/picolibc-latest/newlib/libc/stdio/ |
D | mktemp.c | 141 _gettemp ( in _gettemp() function 269 return (_gettemp (path, &fd, 0, 0, O_BINARY) ? fd : -1); in mkstemp() 277 return (_gettemp (path, (int *) NULL, 1, 0, 0) ? path : NULL); in mkdtemp() 287 return (_gettemp (path, &fd, 0, len, O_BINARY) ? fd : -1); in mkstemps() 297 return (_gettemp (path, &fd, 0, 0, flags & ~O_ACCMODE) ? fd : -1); in mkostemp() 308 return (_gettemp (path, &fd, 0, len, flags & ~O_ACCMODE) ? fd : -1); in mkostemps() 316 return (_gettemp (path, (int *) NULL, 0, 0, 0) ? path : (char *) NULL); in mktemp()
|
/picolibc-latest/newlib/libc/tinystdio/ |
D | mktemp.c | 102 _gettemp (char *path, in _gettemp() function 182 return (_gettemp (template, 0, &fd, 0) ? fd : -1); in mkstemp() 188 return (_gettemp (template, 0, (int *) NULL, 0) ? template : (char *) NULL); in mktemp() 203 return (_gettemp (template, suffixlen, &fd, O_BINARY) ? fd : -1); in mkstemps() 212 return (_gettemp (template, suffixlen, &fd, flags) ? fd : -1); in mkostemps()
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 3639 * libc/stdio/mktemp.c (_gettemp): Cast to unsigned char in call to 4727 * libc/stdio/mktemp.c (_gettemp): Add parameter, all callers 5986 * libc/stdio/mktemp.c (_gettemp): Do not call _mkdir_r unless 6064 (_gettemp): Add domkdir and length parameters. Check for 10466 * libc/stdio/mktemp.c (_gettemp): Likewise. 15820 * libc/stdio/mktemp.c (_gettemp): Ditto. 15835 * libc/stdio/mktemp.c (_gettemp): Ditto. 20755 * libc/stdio/mktemp.c (_gettemp, _mkstemp_r, mkstemp): Added int 21115 * libc/stdio/mktemp.c (_gettemp): on cygwin, check for EACCESS 26872 * libc/stdio/mktemp.c (_gettemp): Ditto for _r_stat, _r_open.
|