Searched refs:tempfile (Results 1 - 18 of 18) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/Temp/t/
H A Dtempfile.t2 # Test for File::Temp - tempfile function
35 use File::Temp qw/ tempfile tempdir/;
42 # Open tempfile in some directory, unlink at end
43 my ($fh, $tempfile) = tempfile(
48 ok( (-f $tempfile) );
51 ok( (-f $tempfile) );
53 push(@files, $tempfile);
70 ($fh, $tempfile) = tempfile(
[all...]
H A Dsecurity.t20 use File::Temp qw/ tempfile unlink0 /;
81 # of tests -- we dont use skip since the tempfile() commands will
94 # Create the tempfile
96 my ($fh1, $fname1) = eval { tempfile ( $template,
123 my ($fh2, $fname2) = eval { tempfile ($template, UNLINK => 1 ); };
/osnet-11/usr/src/lib/libnsl/dial/
H A Dulockf.c56 static char *tempfile; local
59 tempfile = malloc(MAXNAMESIZE);
60 if (tempfile == NULL)
63 (void) snprintf(tempfile, MAXNAMESIZE, "%s/LTMP.%ld", X_LOCKDIR,
67 if (onelock(pid, tempfile, name) == -1) {
68 (void) unlink(tempfile);
72 if (onelock(pid, tempfile, name)) {
73 (void) unlink(tempfile);
189 * tempfile - name of a temporary in the same file system
196 onelock(char *pid, char *tempfile, cha argument
[all...]
/osnet-11/usr/src/tools/onbld/Checks/
H A DProcessCheck.py34 import tempfile namespace
45 # We use a tempfile for output, rather than a pipe, so we
49 tmpfile = tempfile.TemporaryFile(prefix=command)
/osnet-11/usr/src/lib/libmail/common/
H A Dmaillock.c128 lock1(char tempfile[], char name[]) argument
133 fd = open(tempfile, O_RDWR|O_CREAT|O_EXCL, 0600);
147 if (link(tempfile, name) < 0) {
148 (void) remove(tempfile);
151 (void) remove(tempfile);
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/backend/bootvars/x86/
H A Dsolaris.py31 import tempfile namespace
153 fileobj = tempfile.NamedTemporaryFile(dir=alt_dir,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DTemp.pm44 use File::Temp qw/ tempfile tempdir /;
47 ($fh, $filename) = tempfile( DIR => $dir );
49 ($fh, $filename) = tempfile( $template, DIR => $dir);
50 ($fh, $filename) = tempfile( $template, SUFFIX => '.dat');
52 $fh = tempfile();
97 interface. The File::Temp constructor or the tempfile() function can
155 tempfile
226 # in most cases but not if tempfile is called with UNLINK=>0 and
263 # "mkdir"=> if true, we are creating a temp directory rather than tempfile
365 # or a tempfile
1112 sub tempfile { subroutine
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Perldoc/
H A DToRtf.pm21 my($self, $tempfile, $perldoc) = @_;
26 $perldoc->aside( "About to launch <\"$rtf_pager\" \"$tempfile\">\n" );
28 return 1 if system( qq{"$rtf_pager"}, qq{"$tempfile"} ) == 0;
/osnet-11/usr/src/lib/pylibbe/common/
H A Dlibbe.py32 import tempfile namespace
614 mountpoint = tempfile.mkdtemp(prefix="be-%s." % be_name)
724 pool_path = tempfile.mkdtemp(prefix="pool-%s." % rpool)
796 temp_dir = tempfile.mkdtemp(prefix="libbe-")
/osnet-11/usr/src/lib/pybootmgmt/common/bootmgmt/backend/loader/
H A Dmenulst.py35 import tempfile namespace
430 tmpfile = tempfile.NamedTemporaryFile(dir=basepath, delete=False)
H A Dsbb.py34 import tempfile namespace
356 tmpfile = tempfile.NamedTemporaryFile(dir=basepath,
H A Dlegacygrub.py29 import tempfile namespace
767 tmpfile = tempfile.NamedTemporaryFile(dir=basepath, delete=False)
H A Dgrub2.py45 import tempfile namespace
2403 esp_tempdir = tempfile.mkdtemp(dir='/system/volatile')
2716 memdisk_img = tempfile.NamedTemporaryFile(dir='/system/volatile',
2861 tmpf = tempfile.NamedTemporaryFile(dir='/system/volatile',
2936 mount_tempdir = tempfile.mkdtemp(dir='/system/volatile')
3074 tmpdir = tempfile.mkdtemp(dir='/system/volatile')
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dperlcc.PL54 use File::Temp qw(tempfile);
285 # Don't need to keep it, be safe with a tempfile.
287 ($cfh, $cfile) = tempfile("pccXXXXX", SUFFIX => ".c");
492 (undef, $errname) = tempfile("pccXXXXX");
H A Dperlbug.PL967 my ($fh, $filename) = File::Temp::tempfile(UNLINK => 1);
/osnet-11/usr/src/grub/grub-0.97/util/
H A Dgrub-install.in45 # look for secure tempfile creation wrappers on this platform
46 if test -x /bin/tempfile; then
47 mklog="/bin/tempfile --prefix=grub"
48 mkimg="/bin/tempfile --prefix=grub"
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DPerldoc.pm1116 die "Can't make a tempfile!?";
1474 return File::Temp::tempfile(UNLINK => 1);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DCGI.pm342 # always use a tempfile
5125 the attacker, the program chooses tempfile names by calculating a 32

Completed in 55 milliseconds