Home
last modified time | relevance | path

Searched refs:bzfile (Results 1 – 2 of 2) sorted by relevance

/plugin/zip/pear/File/Archive/Reader/
H A DBzip2.php41 var $bzfile = null; variable in File_Archive_Reader_Bzip2
50 if ($this->bzfile !== null)
51 bzclose($this->bzfile);
55 $this->bzfile = null;
80 $this->bzfile = @bzopen($dataFilename, 'r');
81 if ($this->bzfile === false) {
93 $this->bzfile = bzopen($this->tmpName, 'r');
122 $newData = bzread($this->bzfile);
133 $newData = bzread($this->bzfile, $length - strlen($data));
152 bzclose($this->bzfile);
[all …]
/plugin/zip/pear/File/Archive/Writer/
H A DBzip2.php40 var $bzfile; variable in File_Archive_Writer_Bzip2
98 $this->bzfile = bzopen($this->tmpName, 'w'.$this->compressionLevel);
111 bzclose($this->bzfile);
133 bzwrite($this->bzfile, $data);