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

/opensolaris-onvv-gate/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dmktemp.c50 static int _gettemp(char *, int *, int, int);
59 return (_gettemp(path, &fd, 0, slen) ? fd : -1);
68 return (_gettemp(path, &fd, 0, 0) ? fd : -1);
75 return(_gettemp(path, (int *)NULL, 1, 0) ? path : (char *)NULL);
79 _gettemp(path, doopen, domkdir, slen) function
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DTemp.pm250 # modelled on OpenBSD _gettemp() in mktemp.c
286 # ($fh, $name) = _gettemp($template, "open" => 1);
291 sub _gettemp { subroutine
293 croak 'Usage: ($fh, $name) = _gettemp($template, OPTIONS);'
314 carp "File::Temp::_gettemp: template must not be a reference";
321 carp "File::Temp::_gettemp: Must have even number of options";
601 # This has to be done by _gettemp() every time it fails to
1148 # functions or simply constructing a template and using _gettemp()
1177 # Determine whether we should tell _gettemp to unlink the file
1191 unless (($fh, $path) = _gettemp(
[all...]

Completed in 111 milliseconds