Searched defs:tempfile (Results 1 - 10 of 10) sorted by relevance
/osnet-11/usr/src/tools/onbld/Checks/ |
H A D | ProcessCheck.py | 34 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 D | maillock.c | 128 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/libnsl/dial/ |
H A D | ulockf.c | 56 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/lib/pybootmgmt/common/bootmgmt/backend/bootvars/x86/ |
H A D | solaris.py | 31 import tempfile namespace 153 fileobj = tempfile.NamedTemporaryFile(dir=alt_dir,
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/ |
H A D | Temp.pm | 44 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/lib/pybootmgmt/common/bootmgmt/backend/loader/ |
H A D | menulst.py | 35 import tempfile namespace 430 tmpfile = tempfile.NamedTemporaryFile(dir=basepath, delete=False)
|
H A D | sbb.py | 34 import tempfile namespace 356 tmpfile = tempfile.NamedTemporaryFile(dir=basepath,
|
H A D | legacygrub.py | 29 import tempfile namespace 767 tmpfile = tempfile.NamedTemporaryFile(dir=basepath, delete=False)
|
H A D | grub2.py | 45 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/lib/pylibbe/common/ |
H A D | libbe.py | 32 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-")
|
Completed in 71 milliseconds