Searched refs:tmpName (Results 1 – 4 of 4) sorted by relevance
/plugin/zip/pear/File/Archive/Reader/ |
H A D | Bzip2.php | 42 var $tmpName = null; variable in File_Archive_Reader_Bzip2 52 if ($this->tmpName !== null) 53 unlink($this->tmpName); 56 $this->tmpName = null; 79 $this->tmpName = null; 85 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far'); 89 $dest->newFile($this->tmpName); 93 $this->bzfile = bzopen($this->tmpName, 'r'); 153 if ($this->tmpName === null) { 156 $this->bzfile = bzopen($this->tmpName, 'r');
|
H A D | Gzip.php | 43 var $tmpName = null; variable in File_Archive_Reader_Gzip 53 if ($this->tmpName !== null) { 54 unlink($this->tmpName); 60 $this->tmpName = null; 83 $this->tmpName = null; 86 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far'); 90 $dest->newFile($this->tmpName); 94 $this->gzfile = gzopen($this->tmpName, 'r');
|
/plugin/zip/pear/File/Archive/Writer/ |
H A D | Gzip.php | 41 var $tmpName; variable in File_Archive_Writer_Gzip 99 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far'); 100 $this->gzfile = gzopen($this->tmpName, 'w'.$this->compressionLevel); 117 $this->innerWriter->writeFile($this->tmpName); 118 unlink($this->tmpName); 121 $this->tmpName, $this->filename, $this->stat, 'application/x-compressed'
|
H A D | Bzip2.php | 41 var $tmpName; variable in File_Archive_Writer_Bzip2 97 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far'); 98 $this->bzfile = bzopen($this->tmpName, 'w'.$this->compressionLevel); 115 $this->innerWriter->writeFile($this->tmpName); 116 unlink($this->tmpName); 119 $this->tmpName, $this->filename, $this->stat, 'application/x-compressed'
|