Home
last modified time | relevance | path

Searched refs:gzfile (Results 1 – 5 of 5) sorted by relevance

/plugin/quickstats/GEOIP/
H A Dget_geocity2.php23 $gzfile = 'GeoLite2-City.tar.gz';
33 qs_say($helper->getLang('download_fail'), $gzfile);
37 $fp = @fopen($gzfile,'wb');
39 qs_say($helper->getLang('write_fail'), $gzfile);
43 qs_say($helper->getLang('write_fail'), $gzfile);
47 qs_say($helper->getLang('file_saved'), $gzfile);
49 $gz = gzopen($gzfile, "rb");
57 qs_say($helper->getLang('no_unpack'), $gzfile);
/plugin/quickstats/scripts/
H A Dget_geocity.php18 $gzfile = $data_file .'.gz';
27 qs_say($helper->getLang('download_fail'), $gzfile);
31 $fp = @fopen($gzfile,'wb');
33 qs_say($helper->getLang('write_fail'), $gzfile);
37 qs_say($helper->getLang('write_fail'), $gzfile);
41 qs_say($helper->getLang('file_saved'), $gzfile);
43 $gz = gzopen($gzfile, "rb");
51 qs_say($helper->getLang('no_unpack'), $gzfile);
H A Dget_geocity2.php53 $gzfile = $this->tempdir . '/GeoLite2-City.tar.gz';
62 $this->qs_say($this->helper->getLang('download_fail'), $gzfile);
66 $fp = @fopen($gzfile,'wb');
68 $this->qs_say($this->helper->getLang('write_fail'), $gzfile);
72 $this->qs_say($this->helper->getLang('write_fail'), $gzfile);
76 $this->qs_say($this->helper->getLang('file_saved'), $gzfile);
/plugin/zip/pear/File/Archive/Reader/
H A DGzip.php42 var $gzfile = null; variable in File_Archive_Reader_Gzip
50 if ($this->gzfile !== null) {
51 gzclose($this->gzfile);
59 $this->gzfile = null;
84 $this->gzfile = gzopen($dataFilename, 'r');
94 $this->gzfile = gzopen($this->tmpName, 'r');
130 $newData = gzread($this->gzfile, 8192);
136 $data = gzread($this->gzfile, $length);
151 $tmp = gzread($this->gzfile, 8192);
155 if (@gzseek($this->gzfile, $this->filePos + $length) === -1) {
[all …]
/plugin/zip/pear/File/Archive/Writer/
H A DGzip.php40 var $gzfile; variable in File_Archive_Writer_Gzip
100 $this->gzfile = gzopen($this->tmpName, 'w'.$this->compressionLevel);
114 gzclose($this->gzfile);
135 gzwrite($this->gzfile, $data);